From: Nicolas Petton Date: Mon, 24 Oct 2016 11:15:05 +0000 (+0200) Subject: * lisp/emacs-lisp/seq.el (seq-let): Fix debug spec (Bug#24738) X-Git-Tag: emacs-26.0.90~1442 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=524a05ac78ab65fd99d95e362d0d5095d4ddba87;p=emacs.git * lisp/emacs-lisp/seq.el (seq-let): Fix debug spec (Bug#24738) --- 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." 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))