Merge from origin/emacs-28
b201823f63
Describe problems with invoking Python on MS-Windows880f2734c9
A better fix for bug#548005ee959aa87
Add a comment about cl-concatenateab2b822b9b
Revert "Make cl-concatenate an alias of seq-concatenate"
This commit is contained in:
commit
6ecb7ff5ec
3 changed files with 47 additions and 3 deletions
|
@ -553,10 +553,14 @@ 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
|
||||
(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