changeset 95870:2169bb17fe3d

(byte-compile-maybe-guarded): Doc fix.
author Glenn Morris <rgm@gnu.org>
date Fri, 13 Jun 2008 04:16:23 +0000
parents 14ab94c436d7
children 75191063f8b6
files lisp/emacs-lisp/bytecomp.el
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/emacs-lisp/bytecomp.el	Fri Jun 13 02:57:10 2008 +0000
+++ b/lisp/emacs-lisp/bytecomp.el	Fri Jun 13 04:16:23 2008 +0000
@@ -3554,8 +3554,8 @@
 (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.