From: Richard M. Stallman Date: Fri, 2 Jun 2006 03:30:24 +0000 (+0000) Subject: (with-current-buffer): Doc fix. X-Git-Tag: emacs-pretest-22.0.90~2127 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=08a61c99b53c83365d466effb2bfbe94ce6a0e2c;p=emacs.git (with-current-buffer): Doc fix. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 99a3a0d04ec..55e33540dbe 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,7 +1,10 @@ +2006-06-01 Richard Stallman + + * subr.el (with-current-buffer): Doc fix. + 2006-06-02 Masatake YAMATO * progmodes/compile.el (compilation-error-regexp-alist-alist::gcov-*): - Almost rewrite. Underlines over all lines of gcov output are too uncomfortable to read. Suggested by Dan Nicolaescu. 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." ;;;; Lisp macros to do various things temporarily. (defmacro with-current-buffer (buffer &rest body) - "Execute the forms in BODY with BUFFER as the current buffer. + "Execute the forms in BODY with BUFFER temporarily current. BUFFER can be a buffer or a buffer name. The value returned is the value of the last form in BODY. See also `with-temp-buffer'."