summaryrefslogtreecommitdiff
path: root/lisp/emacs-lisp
diff options
context:
space:
mode:
authorJohan Bockgård <bojohan@gnu.org>2016-10-22 00:14:44 +0200
committerJohan Bockgård <bojohan@gnu.org>2016-10-31 21:22:34 +0100
commitdec329aefc02302075f10feaecc3a0f4f1ccf076 (patch)
treee22cd64c815ad2a94be4578be20d5d65d1f13605 /lisp/emacs-lisp
parent8e7b1af1d708dcf41695cf3fbeff9d35cdb8e5b6 (diff)
downloademacs-dec329aefc02302075f10feaecc3a0f4f1ccf076.tar.gz
emacs-dec329aefc02302075f10feaecc3a0f4f1ccf076.tar.bz2
emacs-dec329aefc02302075f10feaecc3a0f4f1ccf076.zip
* lisp/emacs-lisp/cl-macs.el (cl-symbol-macrolet): Fix debug spec
(Bug#24733)
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r--lisp/emacs-lisp/cl-macs.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/cl-macs.el b/lisp/emacs-lisp/cl-macs.el
index 0096e0aab3e..2ebb824e707 100644
--- a/lisp/emacs-lisp/cl-macs.el
+++ b/lisp/emacs-lisp/cl-macs.el
@@ -2134,7 +2134,7 @@ Within the body FORMs, references to the variable NAME will be replaced
by EXPANSION, and (setq NAME ...) will act like (setf EXPANSION ...).
\(fn ((NAME EXPANSION) ...) FORM...)"
- (declare (indent 1) (debug ((&rest (symbol sexp)) cl-declarations body)))
+ (declare (indent 1) (debug ((&rest (symbolp sexp)) cl-declarations body)))
(cond
((cdr bindings)
`(cl-symbol-macrolet (,(car bindings))