aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
Diffstat (limited to '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 e9bfe8df5f2..ce6fb625bc0 100644
--- a/lisp/emacs-lisp/cl-extra.el
+++ b/lisp/emacs-lisp/cl-extra.el
@@ -556,7 +556,7 @@ too large if positive or too small if negative)."
556(defun cl-concatenate (type &rest sequences) 556(defun cl-concatenate (type &rest sequences)
557 "Concatenate, into a sequence of type TYPE, the argument SEQUENCEs. 557 "Concatenate, into a sequence of type TYPE, the argument SEQUENCEs.
558\n(fn TYPE SEQUENCE...)" 558\n(fn TYPE SEQUENCE...)"
559 (seq-concatenate type sequences)) 559 (apply #'seq-concatenate type sequences))
560 560
561;;; List functions. 561;;; List functions.
562 562