* lisp/emacs-lisp/seq.el (seq-let): Fix debug spec (Bug#24738)

This commit is contained in:
Nicolas Petton 2016-10-24 13:15:05 +02:00
parent 7cc8c4b35b
commit 524a05ac78
No known key found for this signature in database
GPG key ID: 233587A47C207910

View file

@ -87,7 +87,7 @@ given, and the match does not fail."
ARGS can also include the `&rest' marker followed by a variable
name to be bound to the rest of SEQUENCE."
(declare (indent 2) (debug t))
(declare (indent 2) (debug (sexp form body)))
`(pcase-let ((,(seq--make-pcase-patterns args) ,sequence))
,@body))