diff options
author | Lars Ingebrigtsen <larsi@gnus.org> | 2020-10-20 13:07:25 +0200 |
---|---|---|
committer | Lars Ingebrigtsen <larsi@gnus.org> | 2020-10-20 13:07:25 +0200 |
commit | 117d58ace75fc210c15e6815d965b080466edc55 (patch) | |
tree | f101061d5f5653858ef820479a3420ec197407ad /lisp/emacs-lisp | |
parent | e7b8c93f94a2f7ccab5a872d6454f312a2a37a70 (diff) | |
download | emacs-117d58ace75fc210c15e6815d965b080466edc55.tar.gz emacs-117d58ace75fc210c15e6815d965b080466edc55.tar.bz2 emacs-117d58ace75fc210c15e6815d965b080466edc55.zip |
Preserve all `eval' elements from both .dir-locals files
* lisp/files.el (dir-locals-read-from-dir): Preserve all `eval'
elements from both .dir-locals files (bug#44066).
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r-- | lisp/emacs-lisp/seq.el | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lisp/emacs-lisp/seq.el b/lisp/emacs-lisp/seq.el index 9073f9c7a51..4656277ea16 100644 --- a/lisp/emacs-lisp/seq.el +++ b/lisp/emacs-lisp/seq.el @@ -474,6 +474,7 @@ Equality is defined by TESTFN if non-nil or by `equal' if nil." (seq-reverse sequence1) '())) +;;;###autoload (cl-defgeneric seq-group-by (function sequence) "Apply FUNCTION to each element of SEQUENCE. Separate the elements of SEQUENCE into an alist using the results as |