diff options
author | Glenn Morris <rgm@gnu.org> | 2008-06-13 04:16:23 +0000 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2008-06-13 04:16:23 +0000 |
commit | d6dc41d523d896f485436809f0181d2ecf9bd6eb (patch) | |
tree | edecd6deef0cc9ca2ba4efa51d7e079f95ed8c99 /lisp/emacs-lisp | |
parent | 943b7eea743bae90835ffc535c1a3ea3ae9c38c8 (diff) | |
download | emacs-d6dc41d523d896f485436809f0181d2ecf9bd6eb.tar.gz emacs-d6dc41d523d896f485436809f0181d2ecf9bd6eb.tar.bz2 emacs-d6dc41d523d896f485436809f0181d2ecf9bd6eb.zip |
(byte-compile-maybe-guarded): Doc fix.
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r-- | lisp/emacs-lisp/bytecomp.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/emacs-lisp/bytecomp.el b/lisp/emacs-lisp/bytecomp.el index 1908e5790dd..5bb2d760980 100644 --- a/lisp/emacs-lisp/bytecomp.el +++ b/lisp/emacs-lisp/bytecomp.el @@ -3554,8 +3554,8 @@ That command is designed for interactive use only" fn)) (defmacro byte-compile-maybe-guarded (condition &rest body) "Execute forms in BODY, potentially guarded by CONDITION. CONDITION is a variable whose value is a test in an `if' or `cond'. -BODY is the code to compile first arm of the if or the body of the -cond clause. If CONDITION's value is of the form (fboundp 'foo) +BODY is the code to compile in the first arm of the if or the body of +the cond clause. If CONDITION's value is of the form (fboundp 'foo) or (boundp 'foo), the relevant warnings from BODY about foo's being undefined will be suppressed. |