aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNicolas Petton2016-10-24 13:15:05 +0200
committerNicolas Petton2016-10-24 13:15:05 +0200
commit524a05ac78ab65fd99d95e362d0d5095d4ddba87 (patch)
tree67984b548afe4ef1c9ef8fb4b6fc973dd47cff9d
parent7cc8c4b35bc7fe9b9224503744e3db847c2f96a8 (diff)
downloademacs-524a05ac78ab65fd99d95e362d0d5095d4ddba87.tar.gz
emacs-524a05ac78ab65fd99d95e362d0d5095d4ddba87.zip
* lisp/emacs-lisp/seq.el (seq-let): Fix debug spec (Bug#24738)
-rw-r--r--lisp/emacs-lisp/seq.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/seq.el b/lisp/emacs-lisp/seq.el
index 9859f28f8e8..85702f4a64d 100644
--- a/lisp/emacs-lisp/seq.el
+++ b/lisp/emacs-lisp/seq.el
@@ -87,7 +87,7 @@ given, and the match does not fail."
87 87
88ARGS can also include the `&rest' marker followed by a variable 88ARGS can also include the `&rest' marker followed by a variable
89name to be bound to the rest of SEQUENCE." 89name to be bound to the rest of SEQUENCE."
90 (declare (indent 2) (debug t)) 90 (declare (indent 2) (debug (sexp form body)))
91 `(pcase-let ((,(seq--make-pcase-patterns args) ,sequence)) 91 `(pcase-let ((,(seq--make-pcase-patterns args) ,sequence))
92 ,@body)) 92 ,@body))
93 93