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.
This commit is contained in:
parent
4d2b3bcd03
commit
3f4c2f813a
1 changed files with 1 additions and 1 deletions
|
@ -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))
|
||||
|
|
Loading…
Add table
Reference in a new issue