emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] master 3f4c2f8 1/4: Make obsolete function zip-lists work


From: Lars Ingebrigtsen
Subject: [Emacs-diffs] master 3f4c2f8 1/4: Make obsolete function zip-lists work again
Date: Sat, 15 Jun 2019 11:13:59 -0400 (EDT)

branch: master
commit 3f4c2f813adeffc6814ee01116704ccf420c3bd9
Author: Lars Ingebrigtsen <address@hidden>
Commit: Lars Ingebrigtsen <address@hidden>

    Make obsolete function zip-lists work again
    
    * lisp/obsolete/cl-compat.el (zip-lists): Use cl-mapcan instead of
    mapcan; mapcan now takes only two parameters.
---
 lisp/obsolete/cl-compat.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lisp/obsolete/cl-compat.el b/lisp/obsolete/cl-compat.el
index b273582..7882705 100644
--- a/lisp/obsolete/cl-compat.el
+++ b/lisp/obsolete/cl-compat.el
@@ -142,7 +142,7 @@
     (Values (mapcar* 'list newsyms oldforms) newsyms)))
 
 (defun zip-lists (evens odds)
-  (mapcan 'list evens odds))
+  (cl-mapcan 'list evens odds))
 
 (defun unzip-lists (list)
   (let ((e nil) (o nil))



reply via email to

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