diff options
| author | Glenn Morris | 2008-06-13 04:16:23 +0000 |
|---|---|---|
| committer | Glenn Morris | 2008-06-13 04:16:23 +0000 |
| commit | d6dc41d523d896f485436809f0181d2ecf9bd6eb (patch) | |
| tree | edecd6deef0cc9ca2ba4efa51d7e079f95ed8c99 | |
| parent | 943b7eea743bae90835ffc535c1a3ea3ae9c38c8 (diff) | |
| download | emacs-d6dc41d523d896f485436809f0181d2ecf9bd6eb.tar.gz emacs-d6dc41d523d896f485436809f0181d2ecf9bd6eb.zip | |
(byte-compile-maybe-guarded): Doc fix.
| -rw-r--r-- | lisp/emacs-lisp/bytecomp.el | 4 |
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. |
| 3556 | CONDITION is a variable whose value is a test in an `if' or `cond'. | 3556 | CONDITION is a variable whose value is a test in an `if' or `cond'. |
| 3557 | BODY is the code to compile first arm of the if or the body of the | 3557 | BODY is the code to compile in the first arm of the if or the body of |
| 3558 | cond clause. If CONDITION's value is of the form (fboundp 'foo) | 3558 | the cond clause. If CONDITION's value is of the form (fboundp 'foo) |
| 3559 | or (boundp 'foo), the relevant warnings from BODY about foo's | 3559 | or (boundp 'foo), the relevant warnings from BODY about foo's |
| 3560 | being undefined will be suppressed. | 3560 | being undefined will be suppressed. |
| 3561 | 3561 | ||