summaryrefslogtreecommitdiff
path: root/lisp/emacs-lisp
diff options
context:
space:
mode:
authorMichael Heerdegen <michael_heerdegen@web.de>2019-10-16 13:07:05 +0200
committerMichael Heerdegen <michael_heerdegen@web.de>2019-10-17 20:13:40 +0200
commit2d13a3f68d4724af52e47675bedf60709c7b5171 (patch)
tree3e124a30c080a066a3370fa7b34dcae5a421ced1 /lisp/emacs-lisp
parent0a70727c4024ac6a66c378df52e37808ee2d7993 (diff)
downloademacs-2d13a3f68d4724af52e47675bedf60709c7b5171.tar.gz
emacs-2d13a3f68d4724af52e47675bedf60709c7b5171.tar.bz2
emacs-2d13a3f68d4724af52e47675bedf60709c7b5171.zip
Extend debug spec of cl-flet (Bug#34481)
* lisp/emacs-lisp/cl-macs.el (cl-flet): Extend debug spec to cover definitions of the form (FUNC EXP).
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r--lisp/emacs-lisp/cl-macs.el4
1 files changed, 3 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/cl-macs.el b/lisp/emacs-lisp/cl-macs.el
index 92154855f3b..80e218884a0 100644
--- a/lisp/emacs-lisp/cl-macs.el
+++ b/lisp/emacs-lisp/cl-macs.el
@@ -2047,7 +2047,9 @@ recursive function definitions. Use `cl-labels' for that. See
info node `(cl) Function Bindings' for details.
\(fn ((FUNC ARGLIST BODY...) ...) FORM...)"
- (declare (indent 1) (debug ((&rest (cl-defun)) cl-declarations body)))
+ (declare (indent 1)
+ (debug ((&rest [&or (&define name function-form) (cl-defun)])
+ cl-declarations body)))
(let ((binds ()) (newenv macroexpand-all-environment))
(dolist (binding bindings)
(let ((var (make-symbol (format "--cl-%s--" (car binding))))