From c39da69053fc7bd17a3859dc56a9cd0991961999 Mon Sep 17 00:00:00 2001 From: Lars Magne Ingebrigtsen Date: Fri, 15 Jul 2011 16:59:42 +0200 Subject: * emacs-lisp/cl-macs.el (declare): Doc string fix-up. --- lisp/emacs-lisp/cl-macs.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lisp/emacs-lisp') diff --git a/lisp/emacs-lisp/cl-macs.el b/lisp/emacs-lisp/cl-macs.el index 623d1c6418f..4f9e0e8b70a 100644 --- a/lisp/emacs-lisp/cl-macs.el +++ b/lisp/emacs-lisp/cl-macs.el @@ -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)) -- cgit v1.2.3