emacs-elpa-diffs
[Top][All Lists]
Advanced

[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)))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]