summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJuanma Barranquero <lekktu@gmail.com>2003-02-10 12:04:59 +0000
committerJuanma Barranquero <lekktu@gmail.com>2003-02-10 12:04:59 +0000
commit62232fde65efcb0b036a157654a9e273d3cd7e88 (patch)
treedd5c1824054e14b94387af9296a5e4ae0cd64ed1
parent18a2e5677e209f14657bb58b54d4162da8339d17 (diff)
downloademacs-62232fde65efcb0b036a157654a9e273d3cd7e88.tar.gz
(Current Buffer): Describe `save-current-buffer' as a special form, not a macro.
-rw-r--r--lispref/buffers.texi10
1 files changed, 5 insertions, 5 deletions
diff --git a/lispref/buffers.texi b/lispref/buffers.texi
index 4ceaabfbfc2..067937e49cb 100644
--- a/lispref/buffers.texi
+++ b/lispref/buffers.texi
@@ -203,11 +203,11 @@ existing buffer.
@end defun
@defspec save-current-buffer body...
-The @code{save-current-buffer} macro saves the identity of the current
-buffer, evaluates the @var{body} forms, and finally restores that buffer
-as current. The return value is the value of the last form in
-@var{body}. The current buffer is restored even in case of an abnormal
-exit via @code{throw} or error (@pxref{Nonlocal Exits}).
+The @code{save-current-buffer} special form saves the identity of the
+current buffer, evaluates the @var{body} forms, and finally restores
+that buffer as current. The return value is the value of the last
+form in @var{body}. The current buffer is restored even in case of an
+abnormal exit via @code{throw} or error (@pxref{Nonlocal Exits}).
If the buffer that used to be current has been killed by the time of
exit from @code{save-current-buffer}, then it is not made current again,