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:
Lars Ingebrigtsen 2022-04-13 06:07:32 +02:00
parent 78e1640ad5
commit ab2b822b9b

View file

@ -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.