]> git.eshelyaron.com Git - emacs.git/commitdiff
Make cl-concatenate an alias of seq-concatenate
authorNoam Postavsky <npostavs@gmail.com>
Mon, 23 Mar 2020 22:58:21 +0000 (18:58 -0400)
committerNoam Postavsky <npostavs@gmail.com>
Mon, 23 Mar 2020 22:58:21 +0000 (18:58 -0400)
* lisp/emacs-lisp/cl-extra.el (cl-concatenate): Use defalias instead
of apply.  This is simpler and more efficient.

lisp/emacs-lisp/cl-extra.el

index f8336d397d78301d1715ee37d1835d193e59597a..5bf74792c08e9b32df9e8e29b32cf8967b98c73e 100644 (file)
@@ -552,10 +552,9 @@ too large if positive or too small if negative)."
   (seq-subseq seq start end))
 
 ;;;###autoload
-(defun cl-concatenate (type &rest sequences)
+(defalias 'cl-concatenate #'seq-concatenate
   "Concatenate, into a sequence of type TYPE, the argument SEQUENCEs.
-\n(fn TYPE SEQUENCE...)"
-  (apply #'seq-concatenate type sequences))
+\n(fn TYPE SEQUENCE...)")
 
 ;;; List functions.