summaryrefslogtreecommitdiff
path: root/lisp/obsolete/cl-compat.el
diff options
context:
space:
mode:
authorLars Ingebrigtsen <larsi@gnus.org>2019-06-15 17:09:08 +0200
committerLars Ingebrigtsen <larsi@gnus.org>2019-06-15 17:09:08 +0200
commit3f4c2f813adeffc6814ee01116704ccf420c3bd9 (patch)
treefff9c60c7628fc45707c1f735206ff63a21a7ae3 /lisp/obsolete/cl-compat.el
parent4d2b3bcd038ffea4a2951cdc2735a904fc875e3a (diff)
downloademacs-3f4c2f813adeffc6814ee01116704ccf420c3bd9.tar.gz
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.
Diffstat (limited to 'lisp/obsolete/cl-compat.el')
-rw-r--r--lisp/obsolete/cl-compat.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/obsolete/cl-compat.el b/lisp/obsolete/cl-compat.el
index b2735826ce1..7882705fe9f 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))