* emacs-lisp/cl-macs.el (declare): Doc string fix-up.

This commit is contained in:
Lars Magne Ingebrigtsen 2011-07-15 16:59:42 +02:00
parent f863868c45
commit c39da69053
2 changed files with 4 additions and 2 deletions

View file

@ -1601,12 +1601,12 @@ values. For compatibility, (values A B C) is a synonym for (list A B C).
;;;###autoload
(defmacro declare (&rest specs)
"Declare something about SPECS while compiling.
"Declare SPECS about the current function while compiling.
For instance
\(declare (warn 0))
will turn off byte-compile warnings."
will turn off byte-compile warnings in the function."
(if (cl-compiling-file)
(while specs
(if (listp cl-declare-stack) (push (car specs) cl-declare-stack))