* lisp/emacs-lisp/subr-x.el (if-let*): Fix Edebug spec (Bug#24748)
This commit is contained in:
parent
071680b734
commit
5401820672
1 changed files with 2 additions and 1 deletions
|
@ -126,7 +126,8 @@ In the special case you only want to bind a single value,
|
||||||
VARLIST can just be a plain tuple.
|
VARLIST can just be a plain tuple.
|
||||||
\n(fn VARLIST THEN ELSE...)"
|
\n(fn VARLIST THEN ELSE...)"
|
||||||
(declare (indent 2)
|
(declare (indent 2)
|
||||||
(debug ([&or (&rest (symbolp form)) (symbolp form)] form body)))
|
(debug ([&or (&rest [&or symbolp (symbolp form)]) (symbolp form)]
|
||||||
|
form body)))
|
||||||
(when (and (<= (length bindings) 2)
|
(when (and (<= (length bindings) 2)
|
||||||
(not (listp (car bindings))))
|
(not (listp (car bindings))))
|
||||||
;; Adjust the single binding case
|
;; Adjust the single binding case
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue