aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2008-06-13 04:16:23 +0000
committerGlenn Morris2008-06-13 04:16:23 +0000
commitd6dc41d523d896f485436809f0181d2ecf9bd6eb (patch)
treeedecd6deef0cc9ca2ba4efa51d7e079f95ed8c99
parent943b7eea743bae90835ffc535c1a3ea3ae9c38c8 (diff)
downloademacs-d6dc41d523d896f485436809f0181d2ecf9bd6eb.tar.gz
emacs-d6dc41d523d896f485436809f0181d2ecf9bd6eb.zip
(byte-compile-maybe-guarded): Doc fix.
-rw-r--r--lisp/emacs-lisp/bytecomp.el4
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))
3554(defmacro byte-compile-maybe-guarded (condition &rest body) 3554(defmacro byte-compile-maybe-guarded (condition &rest body)
3555 "Execute forms in BODY, potentially guarded by CONDITION. 3555 "Execute forms in BODY, potentially guarded by CONDITION.
3556CONDITION is a variable whose value is a test in an `if' or `cond'. 3556CONDITION is a variable whose value is a test in an `if' or `cond'.
3557BODY is the code to compile first arm of the if or the body of the 3557BODY is the code to compile in the first arm of the if or the body of
3558cond clause. If CONDITION's value is of the form (fboundp 'foo) 3558the cond clause. If CONDITION's value is of the form (fboundp 'foo)
3559or (boundp 'foo), the relevant warnings from BODY about foo's 3559or (boundp 'foo), the relevant warnings from BODY about foo's
3560being undefined will be suppressed. 3560being undefined will be suppressed.
3561 3561