diff options
author | Katsumi Yamaoka <yamaoka@jpl.org> | 2013-12-25 22:37:04 +0000 |
---|---|---|
committer | Katsumi Yamaoka <yamaoka@jpl.org> | 2013-12-25 22:37:04 +0000 |
commit | 38b2c142f4a0678d9106138233c4c2e2b4d340a4 (patch) | |
tree | 2179bc9915946be0d871056479605330005e9d74 /lisp/emacs-lisp/byte-run.el | |
parent | af3efc3255185b1f4760ff2385cf227cffb8bee2 (diff) | |
download | emacs-38b2c142f4a0678d9106138233c4c2e2b4d340a4.tar.gz emacs-38b2c142f4a0678d9106138233c4c2e2b4d340a4.tar.bz2 emacs-38b2c142f4a0678d9106138233c4c2e2b4d340a4.zip |
byte-run.el (eval-when-compile), cc-defs.el (cc-eval-when-compile): Fix edebug spec (bug#16184)
Diffstat (limited to 'lisp/emacs-lisp/byte-run.el')
-rw-r--r-- | lisp/emacs-lisp/byte-run.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/byte-run.el b/lisp/emacs-lisp/byte-run.el index 6beef7165d1..2afc52f2c17 100644 --- a/lisp/emacs-lisp/byte-run.el +++ b/lisp/emacs-lisp/byte-run.el @@ -391,7 +391,7 @@ If you think you need this, you're probably making a mistake somewhere." "Like `progn', but evaluates the body at compile time if you're compiling. Thus, the result of the body appears to the compiler as a quoted constant. In interpreted code, this is entirely equivalent to `progn'." - (declare (debug (def-body)) (indent 0)) + (declare (debug (&rest def-form)) (indent 0)) (list 'quote (eval (cons 'progn body) lexical-binding))) (defmacro eval-and-compile (&rest body) |