]> git.eshelyaron.com Git - emacs.git/commitdiff
* lisp/emacs-lisp/seq.el (seq-let): Fix debug spec (Bug#24738)
authorNicolas Petton <nicolas@petton.fr>
Mon, 24 Oct 2016 11:15:05 +0000 (13:15 +0200)
committerNicolas Petton <nicolas@petton.fr>
Mon, 24 Oct 2016 11:15:05 +0000 (13:15 +0200)
lisp/emacs-lisp/seq.el

index 9859f28f8e87865641629392dab884912a39f725..85702f4a64df34b5f1514c17b5f49268417b8f0f 100644 (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))
 \f