]> git.eshelyaron.com Git - emacs.git/commitdiff
* lisp/emacs-lisp/seq.el (seq-concatenate, seq-into): Better error messages.
authorNicolas Petton <nicolas@petton.fr>
Sat, 18 Apr 2015 18:10:27 +0000 (20:10 +0200)
committerNicolas Petton <nicolas@petton.fr>
Sat, 18 Apr 2015 18:10:27 +0000 (20:10 +0200)
lisp/emacs-lisp/seq.el

index 6f7f3c46e2ae11055f4c79c82199a05c93736b5c..320ee201487789ba76e64b9eb924392c3e4bf96b 100644 (file)
@@ -221,7 +221,7 @@ TYPE must be one of following symbols: vector, string or list.
     (`vector (apply #'vconcat seqs))
     (`string (apply #'concat seqs))
     (`list (apply #'append (append seqs '(nil))))
-    (t (error "Not a sequence type name: %s" type))))
+    (t (error "Not a sequence type name: %S" type))))
 
 (defun seq-mapcat (function seq &optional type)
   "Concatenate the result of applying FUNCTION to each element of SEQ.
@@ -295,7 +295,7 @@ TYPE can be one of the following symbols: vector, string or list."
     (`vector (vconcat seq))
     (`string (concat seq))
     (`list (append seq nil))
-    (t (error "Not a sequence type name: %s" type))))
+    (t (error "Not a sequence type name: %S" type))))
 
 (defun seq--drop-list (list n)
   "Return a list from LIST without its first N elements.