diff options
author | Richard M. Stallman <rms@gnu.org> | 2005-07-16 19:04:57 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 2005-07-16 19:04:57 +0000 |
commit | ad50a502a16b5cbc96c6a83565ae29abca60782e (patch) | |
tree | 2a4f2382d61c9171994330459a0cfcc19be50ac1 /lisp/emacs-lisp | |
parent | ca73a5b4418cde4e8024bab9fc84a6c0f89f4185 (diff) | |
download | emacs-ad50a502a16b5cbc96c6a83565ae29abca60782e.tar.gz emacs-ad50a502a16b5cbc96c6a83565ae29abca60782e.tar.bz2 emacs-ad50a502a16b5cbc96c6a83565ae29abca60782e.zip |
(byte-compile-maybe-guarded): Doc fix.
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r-- | lisp/emacs-lisp/bytecomp.el | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lisp/emacs-lisp/bytecomp.el b/lisp/emacs-lisp/bytecomp.el index 92d594945a3..c0a93e86ec1 100644 --- a/lisp/emacs-lisp/bytecomp.el +++ b/lisp/emacs-lisp/bytecomp.el @@ -3353,12 +3353,12 @@ That command is designed for interactive use only" fn)) "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 `(foundp 'foo)' -or `(boundp 'foo)', the relevant warnings from BODY about foo +cond clause. If CONDITION's value is of the form (foundp 'foo) +or (boundp 'foo), the relevant warnings from BODY about foo's being undefined will be suppressed. -If CONDITION's value is `(featurep 'xemacs)', that suppresses all -warnings during execution of BODY." +If CONDITION's value is (not (featurep emacs)) or (featurep 'xemacs), +that suppresses all warnings during execution of BODY." (declare (indent 1) (debug t)) `(let* ((fbound (if (eq 'fboundp (car-safe ,condition)) |