emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] /srv/bzr/emacs/trunk r105233: * emacs-lisp/cl-macs.el (dec


From: Lars Magne Ingebrigtsen
Subject: [Emacs-diffs] /srv/bzr/emacs/trunk r105233: * emacs-lisp/cl-macs.el (declare): Doc string fix-up.
Date: Fri, 15 Jul 2011 16:59:42 +0200
User-agent: Bazaar (2.3.1)

------------------------------------------------------------
revno: 105233
committer: Lars Magne Ingebrigtsen <address@hidden>
branch nick: trunk
timestamp: Fri 2011-07-15 16:59:42 +0200
message:
  * emacs-lisp/cl-macs.el (declare): Doc string fix-up.
modified:
  lisp/ChangeLog
  lisp/emacs-lisp/cl-macs.el
=== modified file 'lisp/ChangeLog'
--- a/lisp/ChangeLog    2011-07-15 14:24:09 +0000
+++ b/lisp/ChangeLog    2011-07-15 14:59:42 +0000
@@ -1,5 +1,7 @@
 2011-07-15  Lars Magne Ingebrigtsen  <address@hidden>
 
+       * 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).

=== modified file 'lisp/emacs-lisp/cl-macs.el'
--- a/lisp/emacs-lisp/cl-macs.el        2011-07-15 13:46:52 +0000
+++ b/lisp/emacs-lisp/cl-macs.el        2011-07-15 14:59:42 +0000
@@ -1601,12 +1601,12 @@
 
 ;;;###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))


reply via email to

[Prev in Thread] Current Thread [Next in Thread]