]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix cl-concatenate (Bug#40180)
authorNoam Postavsky <npostavs@gmail.com>
Sun, 22 Mar 2020 11:48:14 +0000 (07:48 -0400)
committerNoam Postavsky <npostavs@gmail.com>
Mon, 23 Mar 2020 03:06:31 +0000 (23:06 -0400)
* lisp/emacs-lisp/cl-extra.el (cl-concatenate): Use apply, to avoid
adding extra nesting of args.
* test/lisp/emacs-lisp/cl-extra-tests.el (cl-concatenate): New test.

lisp/emacs-lisp/cl-extra.el
test/lisp/emacs-lisp/cl-extra-tests.el

index e9bfe8df5f2f63833534a68e28c3c0290995d166..ce6fb625bc0164fbd7fae6f9e97a021cfc579af7 100644 (file)
@@ -556,7 +556,7 @@ too large if positive or too small if negative)."
 (defun cl-concatenate (type &rest sequences)
   "Concatenate, into a sequence of type TYPE, the argument SEQUENCEs.
 \n(fn TYPE SEQUENCE...)"
-  (seq-concatenate type sequences))
+  (apply #'seq-concatenate type sequences))
 
 ;;; List functions.
 
index 2d20ba75d290942f52cb8f88c5b6e36345f58b11..7546c1493773bb4d3fa9cb1db96aeece3b68ec2d 100644 (file)
     ;; Test for Bug#33731.
     (should-not (eq s (cl-make-random-state s)))))
 
+(ert-deftest cl-concatenate ()
+  (should (equal (cl-concatenate 'list '(1 2 3) '(4 5 6))
+                 '(1 2 3 4 5 6)))
+  (should (equal (cl-concatenate 'vector [1 2 3] [4 5 6])
+                 [1 2 3 4 5 6]))
+  (should (equal (cl-concatenate 'string "123" "456")
+                 "123456")))
+
 ;;; cl-extra-tests.el ends here