diff options
| author | Glenn Morris | 2008-08-10 20:08:38 +0000 |
|---|---|---|
| committer | Glenn Morris | 2008-08-10 20:08:38 +0000 |
| commit | 51bfa3d9bcf60e4db40de296e12f94d0319f1540 (patch) | |
| tree | 3c3feb995f71cc18fb37637f4d1ff3e1649d0b92 | |
| parent | d7abeae694213d643ceeab3034a9b2b9c28db938 (diff) | |
| download | emacs-51bfa3d9bcf60e4db40de296e12f94d0319f1540.tar.gz emacs-51bfa3d9bcf60e4db40de296e12f94d0319f1540.zip | |
(byte-compile-maybe-guarded): Doc fix (sync from trunk 2008-06-13).
(byte-compile-file): Doc fix (sync from trunk 2008-04-27).
| -rw-r--r-- | lisp/emacs-lisp/bytecomp.el | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/emacs-lisp/bytecomp.el b/lisp/emacs-lisp/bytecomp.el index 4bd94a6bc56..4e571130f3a 100644 --- a/lisp/emacs-lisp/bytecomp.el +++ b/lisp/emacs-lisp/bytecomp.el | |||
| @@ -1620,7 +1620,7 @@ This is normally set in local file variables at the end of the elisp file: | |||
| 1620 | (defun byte-compile-file (filename &optional load) | 1620 | (defun byte-compile-file (filename &optional load) |
| 1621 | "Compile a file of Lisp code named FILENAME into a file of byte code. | 1621 | "Compile a file of Lisp code named FILENAME into a file of byte code. |
| 1622 | The output file's name is generated by passing FILENAME to the | 1622 | The output file's name is generated by passing FILENAME to the |
| 1623 | `byte-compile-dest-file' function (which see). | 1623 | function `byte-compile-dest-file' (which see). |
| 1624 | With prefix arg (noninteractively: 2nd arg), LOAD the file after compiling. | 1624 | With prefix arg (noninteractively: 2nd arg), LOAD the file after compiling. |
| 1625 | The value is non-nil if there were no errors, nil if errors." | 1625 | The value is non-nil if there were no errors, nil if errors." |
| 1626 | ;; (interactive "fByte compile file: \nP") | 1626 | ;; (interactive "fByte compile file: \nP") |
| @@ -3444,8 +3444,8 @@ That command is designed for interactive use only" fn)) | |||
| 3444 | (defmacro byte-compile-maybe-guarded (condition &rest body) | 3444 | (defmacro byte-compile-maybe-guarded (condition &rest body) |
| 3445 | "Execute forms in BODY, potentially guarded by CONDITION. | 3445 | "Execute forms in BODY, potentially guarded by CONDITION. |
| 3446 | CONDITION is a variable whose value is a test in an `if' or `cond'. | 3446 | CONDITION is a variable whose value is a test in an `if' or `cond'. |
| 3447 | BODY is the code to compile first arm of the if or the body of the | 3447 | BODY is the code to compile in the first arm of the if or the body of |
| 3448 | cond clause. If CONDITION's value is of the form (fboundp 'foo) | 3448 | the cond clause. If CONDITION's value is of the form (fboundp 'foo) |
| 3449 | or (boundp 'foo), the relevant warnings from BODY about foo's | 3449 | or (boundp 'foo), the relevant warnings from BODY about foo's |
| 3450 | being undefined will be suppressed. | 3450 | being undefined will be suppressed. |
| 3451 | 3451 | ||