The `defmacro*' macro in `cl-macs' does not recognize `declare' forms.

"Define NAME as a macro.
Like normal `defmacro', except ARGLIST allows full Common Lisp conventions,
and BODY is implicitly surrounded by (block NAME ...)."

(macroexpand '(defmacro* foo () (declare (indent 1)) nil))
   =>
(defmacro foo nil (block foo (declare (indent 1)) nil))

-- 
Johan Bockg�rd


_______________________________________________
Emacs-pretest-bug mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/emacs-pretest-bug

Reply via email to