emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] master 5401820: * lisp/emacs-lisp/subr-x.el (if-let*): Fix


From: Mark Oteiza
Subject: [Emacs-diffs] master 5401820: * lisp/emacs-lisp/subr-x.el (if-let*): Fix Edebug spec (Bug#24748)
Date: Fri, 17 Feb 2017 18:50:28 -0500 (EST)

branch: master
commit 5401820672c650f47bf055ebbf3cc590f90cb05a
Author: Gemini Lasswell <address@hidden>
Commit: Mark Oteiza <address@hidden>

    * lisp/emacs-lisp/subr-x.el (if-let*): Fix Edebug spec (Bug#24748)
---
 lisp/emacs-lisp/subr-x.el | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/lisp/emacs-lisp/subr-x.el b/lisp/emacs-lisp/subr-x.el
index f7a8469..1d729f9 100644
--- a/lisp/emacs-lisp/subr-x.el
+++ b/lisp/emacs-lisp/subr-x.el
@@ -126,7 +126,8 @@ In the special case you only want to bind a single value,
 VARLIST can just be a plain tuple.
 \n(fn VARLIST THEN ELSE...)"
   (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)
              (not (listp (car bindings))))
     ;; Adjust the single binding case



reply via email to

[Prev in Thread] Current Thread [Next in Thread]