[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[elpa] externals/ilist df91da4d46 17/24: ilist: try to fix a bug
From: |
ELPA Syncer |
Subject: |
[elpa] externals/ilist df91da4d46 17/24: ilist: try to fix a bug |
Date: |
Tue, 28 Dec 2021 16:58:14 -0500 (EST) |
branch: externals/ilist
commit df91da4d4684c747e91147d25fac1d56c8a8a0ef
Author: JSDurand <mmemmew@gmail.com>
Commit: JSDurand <mmemmew@gmail.com>
ilist: try to fix a bug
* ilist.el (ilist-display): Prevent the column to be nil.
---
ilist.el | 8 +++++---
1 file changed, 5 insertions(+), 3 deletions(-)
diff --git a/ilist.el b/ilist.el
index c910c1295d..615a59ee07 100644
--- a/ilist.el
+++ b/ilist.el
@@ -193,9 +193,11 @@ trailing spaces."
(lambda (element)
(mapcar
(lambda (column)
- (let* ((str (funcall
- (ilist-column-fun column)
- element))
+ (let* ((str (or
+ (funcall
+ (ilist-column-fun column)
+ element)
+ (string)))
(str-len (string-width str))
(max-len (ilist-column-max column))
(elide (ilist-column-elide column))
- [elpa] externals/ilist b2bf67c5d8 24/24: Add changelog, and update documentation, (continued)
- [elpa] externals/ilist b2bf67c5d8 24/24: Add changelog, and update documentation, ELPA Syncer, 2021/12/28
- [elpa] externals/ilist ed18678569 05/24: new: get group and marks, ELPA Syncer, 2021/12/28
- [elpa] externals/ilist 5362c106a8 04/24: more functionalities, ELPA Syncer, 2021/12/28
- [elpa] externals/ilist 347effebbe 07/24: fix the calculation of lengths of strings, ELPA Syncer, 2021/12/28
- [elpa] externals/ilist ebb207c520 08/24: Fix an ilist error, ELPA Syncer, 2021/12/28
- [elpa] externals/ilist 76f29b61bb 10/24: Minor format change, ELPA Syncer, 2021/12/28
- [elpa] externals/ilist 8c4efd3d7c 11/24: add invisible text property., ELPA Syncer, 2021/12/28
- [elpa] externals/ilist c4a48491ee 15/24: fix previous bugs caused by invisibility, ELPA Syncer, 2021/12/28
- [elpa] externals/ilist 1b16d5789d 14/24: ilist: fix some errors caused by invisibility again., ELPA Syncer, 2021/12/28
- [elpa] externals/ilist c9b456103c 16/24: Fix errors and byte-compile, ELPA Syncer, 2021/12/28
- [elpa] externals/ilist df91da4d46 17/24: ilist: try to fix a bug,
ELPA Syncer <=
- [elpa] externals/ilist 0892dd8ffc 18/24: ilist: update the byte-compiled version, ELPA Syncer, 2021/12/28
- [elpa] externals/ilist 2279028fd5 23/24: ilist: Adding automatic filter groups, ELPA Syncer, 2021/12/28
- [elpa] externals/ilist 66bc6e0101 19/24: ilist: fix a bug about moving between items, ELPA Syncer, 2021/12/28