byte-run.el (eval-when-compile), cc-defs.el (cc-eval-when-compile): Fix edebug spec...
[bpt/emacs.git] / lisp / emacs-lisp / byte-run.el
index 6beef71..2afc52f 100644 (file)
@@ -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)