2011-07-15 Lars Magne Ingebrigtsen <larsi@gnus.org>
+ * emacs-lisp/cl-macs.el (declare): Doc string fix-up.
+
* international/mule-cmds.el
(describe-specified-language-support): Make the error message
clearer (bug#8905).
;;;###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))