Merge from origin/emacs-28

b201823f63 Describe problems with invoking Python on MS-Windows
880f2734c9 A better fix for bug#54800
5ee959aa87 Add a comment about cl-concatenate
ab2b822b9b Revert "Make cl-concatenate an alias of seq-concatenate"
This commit is contained in:
Eli Zaretskii 2022-04-16 13:46:04 -04:00
commit 6ecb7ff5ec
3 changed files with 47 additions and 3 deletions

View file

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