Revert "Make cl-concatenate an alias of seq-concatenate"
This reverts commit 78f76fe16e
.
The commit made calls to cl-concatenate bug out, since
autoloading defalises doesn't work very well (bug#54901).
This commit is contained in:
parent
78e1640ad5
commit
ab2b822b9b
1 changed files with 3 additions and 2 deletions
|
@ -554,9 +554,10 @@ too large if positive or too small if negative)."
|
|||
(seq-subseq seq start end))
|
||||
|
||||
;;;###autoload
|
||||
(defalias 'cl-concatenate #'seq-concatenate
|
||||
(defun cl-concatenate (type &rest sequences)
|
||||
"Concatenate, into a sequence of type TYPE, the argument SEQUENCEs.
|
||||
\n(fn TYPE SEQUENCE...)")
|
||||
\n(fn TYPE SEQUENCE...)"
|
||||
(apply #'seq-concatenate type sequences))
|
||||
|
||||
;;; List functions.
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue