diff options
author | Nicolas Petton <nicolas@petton.fr> | 2016-10-24 13:15:05 +0200 |
---|---|---|
committer | Nicolas Petton <nicolas@petton.fr> | 2016-10-24 13:15:05 +0200 |
commit | 524a05ac78ab65fd99d95e362d0d5095d4ddba87 (patch) | |
tree | 67984b548afe4ef1c9ef8fb4b6fc973dd47cff9d /lisp/emacs-lisp/seq.el | |
parent | 7cc8c4b35bc7fe9b9224503744e3db847c2f96a8 (diff) | |
download | emacs-524a05ac78ab65fd99d95e362d0d5095d4ddba87.tar.gz |
* lisp/emacs-lisp/seq.el (seq-let): Fix debug spec (Bug#24738)
Diffstat (limited to 'lisp/emacs-lisp/seq.el')
-rw-r--r-- | lisp/emacs-lisp/seq.el | 2 |
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." 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)) |