aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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