summaryrefslogtreecommitdiff
path: root/lisp/emacs-lisp
diff options
context:
space:
mode:
authorLars Ingebrigtsen <larsi@gnus.org>2022-04-13 06:11:43 +0200
committerLars Ingebrigtsen <larsi@gnus.org>2022-04-13 06:11:51 +0200
commit5ee959aa8783689627a1553c678fd4d3720236c8 (patch)
treef1cb0ed113bf9c23d4d2a5ba93def71d53b5f8b8 /lisp/emacs-lisp
parentab2b822b9bbac321ec061de349cf0166cc406fe7 (diff)
downloademacs-5ee959aa8783689627a1553c678fd4d3720236c8.tar.gz
Add a comment about cl-concatenate
* lisp/emacs-lisp/cl-extra.el (cl-concatenate): Add a comment.
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r--lisp/emacs-lisp/cl-extra.el3
1 files changed, 3 insertions, 0 deletions
diff --git a/lisp/emacs-lisp/cl-extra.el b/lisp/emacs-lisp/cl-extra.el
index fd94554ca19..8e38df43c87 100644
--- a/lisp/emacs-lisp/cl-extra.el
+++ b/lisp/emacs-lisp/cl-extra.el
@@ -553,6 +553,9 @@ too large if positive or too small if negative)."
,new)))))
(seq-subseq seq start end))
+;;; This isn't a defalias because autoloading defalises doesn't work
+;;; very well.
+
;;;###autoload
(defun cl-concatenate (type &rest sequences)
"Concatenate, into a sequence of type TYPE, the argument SEQUENCEs.