mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-15 10:30:25 -08:00
Merge from origin/emacs-27
d66331aea4(origin/emacs-27) Don't build the Gnulib 'utimens' module ...f2351a689bAdd Harfbuzz dependency8944310d7cDon't signal during backtrace unrewind (Bug#40088)8709aaddd8Fix a couple of problems in changelog generating functions9ab85f087fFix cl-concatenate (Bug#40180)561e9fb91bImprove documentation of project.el commandsb28a9a6cc3Make svg images with links valid7515252cce* lisp/tab-line.el (tab-line-new-button-show): New defcustom. # Conflicts: # etc/NEWS # nt/gnulib-cfg.mk
This commit is contained in:
commit
5d5d5d492c
15 changed files with 159 additions and 50 deletions
|
|
@ -99,4 +99,12 @@
|
|||
;; 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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue