[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[elpa] externals/frog-menu d8e9325 11/12: Fix compiler errors
From: |
Clemens Radermacher |
Subject: |
[elpa] externals/frog-menu d8e9325 11/12: Fix compiler errors |
Date: |
Thu, 21 May 2020 11:15:13 -0400 (EDT) |
branch: externals/frog-menu
commit d8e9325f317cd0af2be42b8e3bdc945b262c7435
Author: Clemens Radermacher <address@hidden>
Commit: Clemens Radermacher <address@hidden>
Fix compiler errors
---
frog-menu.el | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/frog-menu.el b/frog-menu.el
index e010b5d..dbd26bb 100644
--- a/frog-menu.el
+++ b/frog-menu.el
@@ -688,9 +688,9 @@ COLLECTION and PREDICATE should have the format as
specified by
(lambda (key val)
(unless (and predicate
(funcall predicate key val))
- (push (if (symbolp el)
- (symbol-name el)
- el)
+ (push (if (symbolp key)
+ (symbol-name key)
+ key)
strings)))
collection)
(nreverse strings)))
- [elpa] externals/frog-menu 06d5f17 03/12: Add mode menu entry command for example, (continued)
- [elpa] externals/frog-menu 06d5f17 03/12: Add mode menu entry command for example, Clemens Radermacher, 2020/05/21
- [elpa] externals/frog-menu ec633cd 02/12: Update example, Clemens Radermacher, 2020/05/21
- [elpa] externals/frog-menu 9b2fd00 06/12: Require tmm for example, Clemens Radermacher, 2020/05/21
- [elpa] externals/frog-menu 4ef6586 09/12: Give frog-menu-posframe-background-face a default background color, Clemens Radermacher, 2020/05/21
- [elpa] externals/frog-menu 3d99c10 12/12: Bump version, Clemens Radermacher, 2020/05/21
- [elpa] externals/frog-menu 6898f09 04/12: Fix example, Clemens Radermacher, 2020/05/21
- [elpa] externals/frog-menu 0430a4f 05/12: Update example, Clemens Radermacher, 2020/05/21
- [elpa] externals/frog-menu ac85040 07/12: Add posframe border option as suggested by #7, Clemens Radermacher, 2020/05/21
- [elpa] externals/frog-menu 94c99cf 08/12: Add support for all collection formats of completing-read, Clemens Radermacher, 2020/05/21
- [elpa] externals/frog-menu 94a24ff 10/12: Fix hash collection types, Clemens Radermacher, 2020/05/21
- [elpa] externals/frog-menu d8e9325 11/12: Fix compiler errors,
Clemens Radermacher <=