diff lisp/emacs-lisp/bytecomp.el @ 64397:876aa7f08950

(byte-compile-maybe-guarded): Doc fix.
author Richard M. Stallman <rms@gnu.org>
date Sat, 16 Jul 2005 19:04:35 +0000
parents 47148916c99b
children 9fcfa0b883d4
line wrap: on
line diff
--- a/lisp/emacs-lisp/bytecomp.el	Sat Jul 16 18:45:25 2005 +0000
+++ b/lisp/emacs-lisp/bytecomp.el	Sat Jul 16 19:04:35 2005 +0000
@@ -3353,12 +3353,12 @@
   "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))