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

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[nongnu] elpa/j-mode b865416 23/56: Removing common lisp idiom in favour


From: ELPA Syncer
Subject: [nongnu] elpa/j-mode b865416 23/56: Removing common lisp idiom in favour of the proper elisp code
Date: Sun, 29 Aug 2021 11:20:47 -0400 (EDT)

branch: elpa/j-mode
commit b8654165926e20bb789f9e55bbdfc3bb04959036
Author: Zachary Elliott <zach@nyu.edu>
Commit: Zachary Elliott <zach@nyu.edu>

    Removing common lisp idiom in favour of the proper elisp code
---
 j-help.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/j-help.el b/j-help.el
index dcbafa1..576b930 100644
--- a/j-help.el
+++ b/j-help.el
@@ -128,7 +128,7 @@ It groups the objects in LIST according to the predicate FN"
 (defconst j-help-dictionary-data-block
   (mapcar
    (lambda (l) (list (length (caar l))
-                     (regexp-opt (map 'list 'car l))
+                     (regexp-opt (mapcar 'car l))
                      l))
    (delq nil (group-by j-help-voc-alist (lambda (x) (length (car x))))))
   "(int * string * (string * string) alist) list")



reply via email to

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