aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman2006-05-30 01:19:09 +0000
committerRichard M. Stallman2006-05-30 01:19:09 +0000
commit39be728a88a93ae2b0a8ded953aa074fa0cf556d (patch)
tree252862308454caef449b51515bfc5e974d919289
parent361ed4fdba1a8b8ee47b7bd473161098942f0199 (diff)
downloademacs-39be728a88a93ae2b0a8ded953aa074fa0cf556d.tar.gz
emacs-39be728a88a93ae2b0a8ded953aa074fa0cf556d.zip
(with-current-buffer): Doc fix.
-rw-r--r--lisp/ChangeLog6
-rw-r--r--lisp/subr.el1
2 files changed, 6 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 9f850eeb3ab..9e1eb780f2d 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,6 +1,10 @@
12006-05-29 Richard Stallman <rms@gnu.org>
2
3 * subr.el (with-current-buffer): Doc fix.
4
12006-05-29 Jan Dj,Ad(Brv <jan.h.d@swipnet.se> 52006-05-29 Jan Dj,Ad(Brv <jan.h.d@swipnet.se>
2 6
3 * term/x-win.el: bind F10 to menu-bar-start if available. 7 * term/x-win.el: Bind F10 to menu-bar-start if available.
4 8
52006-05-28 Dan Nicolaescu <dann@ics.uci.edu> 92006-05-28 Dan Nicolaescu <dann@ics.uci.edu>
6 10
diff --git a/lisp/subr.el b/lisp/subr.el
index 90f1db78de1..993dae04181 100644
--- a/lisp/subr.el
+++ b/lisp/subr.el
@@ -2203,6 +2203,7 @@ If you quit, the process is killed with SIGINT, or SIGKILL if you quit again."
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 as the current buffer.
2206BUFFER can be a buffer or a buffer name.
2206The value returned is the value of the last form in BODY. 2207The value returned is the value of the last form in BODY.
2207See also `with-temp-buffer'." 2208See also `with-temp-buffer'."
2208 (declare (indent 1) (debug t)) 2209 (declare (indent 1) (debug t))