diff options
| author | Richard M. Stallman | 2006-06-02 03:30:24 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 2006-06-02 03:30:24 +0000 |
| commit | 08a61c99b53c83365d466effb2bfbe94ce6a0e2c (patch) | |
| tree | b2fe3dc45928a18edaed35ae082f7eade02fe180 | |
| parent | eb3d96092ad3fc6b8a29e5f58dafa89338ba2b58 (diff) | |
| download | emacs-08a61c99b53c83365d466effb2bfbe94ce6a0e2c.tar.gz emacs-08a61c99b53c83365d466effb2bfbe94ce6a0e2c.zip | |
(with-current-buffer): Doc fix.
| -rw-r--r-- | lisp/ChangeLog | 5 | ||||
| -rw-r--r-- | lisp/subr.el | 2 |
2 files changed, 5 insertions, 2 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 99a3a0d04ec..55e33540dbe 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,7 +1,10 @@ | |||
| 1 | 2006-06-01 Richard Stallman <rms@gnu.org> | ||
| 2 | |||
| 3 | * subr.el (with-current-buffer): Doc fix. | ||
| 4 | |||
| 1 | 2006-06-02 Masatake YAMATO <jet@gyve.org> | 5 | 2006-06-02 Masatake YAMATO <jet@gyve.org> |
| 2 | 6 | ||
| 3 | * progmodes/compile.el (compilation-error-regexp-alist-alist::gcov-*): | 7 | * progmodes/compile.el (compilation-error-regexp-alist-alist::gcov-*): |
| 4 | |||
| 5 | Almost rewrite. Underlines over all lines of gcov output are too | 8 | Almost rewrite. Underlines over all lines of gcov output are too |
| 6 | uncomfortable to read. Suggested by Dan Nicolaescu. | 9 | uncomfortable to read. Suggested by Dan Nicolaescu. |
| 7 | 10 | ||
diff --git a/lisp/subr.el b/lisp/subr.el index 993dae04181..f19142faa60 100644 --- a/lisp/subr.el +++ b/lisp/subr.el | |||
| @@ -2202,7 +2202,7 @@ If you quit, the process is killed with SIGINT, or SIGKILL if you quit again." | |||
| 2202 | ;;;; Lisp macros to do various things temporarily. | 2202 | ;;;; Lisp macros to do various things temporarily. |
| 2203 | 2203 | ||
| 2204 | (defmacro with-current-buffer (buffer &rest body) | 2204 | (defmacro with-current-buffer (buffer &rest body) |
| 2205 | "Execute the forms in BODY with BUFFER as the current buffer. | 2205 | "Execute the forms in BODY with BUFFER temporarily current. |
| 2206 | BUFFER can be a buffer or a buffer name. | 2206 | BUFFER can be a buffer or a buffer name. |
| 2207 | The value returned is the value of the last form in BODY. | 2207 | The value returned is the value of the last form in BODY. |
| 2208 | See also `with-temp-buffer'." | 2208 | See also `with-temp-buffer'." |