* help.texi (Misc Help): Mention `describe-prefix-bindings' explicitly.
[bpt/emacs.git] / lisp / emacs-lisp / cl-macs.el
index 2813cc4..4f9e0e8 100644 (file)
@@ -1601,6 +1601,12 @@ values.  For compatibility, (values A B C) is a synonym for (list A B C).
 
 ;;;###autoload
 (defmacro declare (&rest specs)
+  "Declare SPECS about the current function while compiling.
+For instance
+
+  \(declare (warn 0))
+
+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))