summaryrefslogtreecommitdiff
path: root/lisp/emacs-lisp/seq.el
diff options
context:
space:
mode:
authorNicolas Petton <nicolas@petton.fr>2015-06-16 23:49:17 +0200
committerNicolas Petton <nicolas@petton.fr>2015-06-16 23:49:35 +0200
commit70a567971a930f104b47200fcdb01a858846d41d (patch)
treecf552c210e63e425ed86b9b8d4d6727d11561872 /lisp/emacs-lisp/seq.el
parent7d5c120fedd86b911bb9ffe423920e701f63a7c3 (diff)
downloademacs-70a567971a930f104b47200fcdb01a858846d41d.tar.gz
* lisp/emacs-lisp/seq.el: Fix a byte-compiler warnings related to pcase.
Diffstat (limited to 'lisp/emacs-lisp/seq.el')
-rw-r--r--lisp/emacs-lisp/seq.el8
1 files changed, 4 insertions, 4 deletions
diff --git a/lisp/emacs-lisp/seq.el b/lisp/emacs-lisp/seq.el
index 0aa0f095969..2d20de61711 100644
--- a/lisp/emacs-lisp/seq.el
+++ b/lisp/emacs-lisp/seq.el
@@ -249,7 +249,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))))
+ (_ (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.
@@ -323,7 +323,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))))
+ (_ (error "Not a sequence type name: %S" type))))
(defun seq--drop-list (list n)
"Return a list from LIST without its first N elements.
@@ -379,7 +379,7 @@ This is an optimization for lists in `seq-take-while'."
,(seq--elt-safe args (1+ index)))
bindings)
(setq rest-marker t)))
- (t
+ (_
(push `(app (pcase--flip seq--elt-safe ,index) ,name) bindings))))
(setq index (1+ index)))
bindings))
@@ -413,7 +413,7 @@ BINDINGS."
(seq-drop ,seq ,index))
bindings)
(setq rest-marker t)))
- (t
+ (_
(push `(,name (seq--elt-safe ,seq ,index)) bindings))))
(setq index (1+ index)))
bindings))