summaryrefslogtreecommitdiff
path: root/lisp/emacs-lisp
diff options
context:
space:
mode:
authorAndrea Corallo <akrl@sdf.org>2020-03-23 20:38:07 +0000
committerAndrea Corallo <akrl@sdf.org>2020-03-23 20:38:07 +0000
commit8cc8adb04d2861fb1b1bbb38e53feccf3a2fc1c5 (patch)
treeed60f8dc81f670113eff18b2f656de4864bd83cc /lisp/emacs-lisp
parentf8b07ff4f318d799a471c9363903e3929fd5c844 (diff)
parent5d5d5d492c0f1cc500713b133b1ad3e205031714 (diff)
downloademacs-8cc8adb04d2861fb1b1bbb38e53feccf3a2fc1c5.tar.gz
emacs-8cc8adb04d2861fb1b1bbb38e53feccf3a2fc1c5.tar.bz2
emacs-8cc8adb04d2861fb1b1bbb38e53feccf3a2fc1c5.zip
Merge remote-tracking branch 'savannah/master' into HEAD
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r--lisp/emacs-lisp/cl-extra.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/cl-extra.el b/lisp/emacs-lisp/cl-extra.el
index 323bbbbf947..f8336d397d7 100644
--- a/lisp/emacs-lisp/cl-extra.el
+++ b/lisp/emacs-lisp/cl-extra.el
@@ -555,7 +555,7 @@ too large if positive or too small if negative)."
(defun cl-concatenate (type &rest sequences)
"Concatenate, into a sequence of type TYPE, the argument SEQUENCEs.
\n(fn TYPE SEQUENCE...)"
- (seq-concatenate type sequences))
+ (apply #'seq-concatenate type sequences))
;;; List functions.