summaryrefslogtreecommitdiff
path: root/lisp/emacs-lisp
diff options
context:
space:
mode:
authorAndrea Corallo <akrl@sdf.org>2020-03-24 16:22:06 +0000
committerAndrea Corallo <akrl@sdf.org>2020-03-24 16:22:06 +0000
commitf7e10297d18b17f55b4a8442a3307db00605d46d (patch)
treef47f9a9e9eb8ca0bfaa82df4999e3034efe474b6 /lisp/emacs-lisp
parent73ced8c23ec3d5cdfa6d926af649235104707d85 (diff)
parent82f8bee734b47e639a931048f9a6ccbfc85a8bb0 (diff)
downloademacs-f7e10297d18b17f55b4a8442a3307db00605d46d.tar.gz
emacs-f7e10297d18b17f55b4a8442a3307db00605d46d.tar.bz2
emacs-f7e10297d18b17f55b4a8442a3307db00605d46d.zip
Merge remote-tracking branch 'savannah/master' into HEAD
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r--lisp/emacs-lisp/cl-extra.el5
1 files changed, 2 insertions, 3 deletions
diff --git a/lisp/emacs-lisp/cl-extra.el b/lisp/emacs-lisp/cl-extra.el
index f8336d397d7..5bf74792c08 100644
--- a/lisp/emacs-lisp/cl-extra.el
+++ b/lisp/emacs-lisp/cl-extra.el
@@ -552,10 +552,9 @@ too large if positive or too small if negative)."
(seq-subseq seq start end))
;;;###autoload
-(defun cl-concatenate (type &rest sequences)
+(defalias 'cl-concatenate #'seq-concatenate
"Concatenate, into a sequence of type TYPE, the argument SEQUENCEs.
-\n(fn TYPE SEQUENCE...)"
- (apply #'seq-concatenate type sequences))
+\n(fn TYPE SEQUENCE...)")
;;; List functions.