summaryrefslogtreecommitdiff
path: root/lispref/buffers.texi
diff options
context:
space:
mode:
authorJuri Linkov <juri@jurta.org>2005-10-17 06:44:50 +0000
committerJuri Linkov <juri@jurta.org>2005-10-17 06:44:50 +0000
commita029bcbbaffe98c622a3002eb66861fddcf0845d (patch)
tree74624d9c0a0b833219dd314aa1f23ffea57ed966 /lispref/buffers.texi
parent79af55a7ebdbe2f431851d96f38fbca08f7fe82c (diff)
downloademacs-a029bcbbaffe98c622a3002eb66861fddcf0845d.tar.gz
(Current Buffer): Replace `...' with `@dots{}' in `@defmac' and `@defspec'.
Diffstat (limited to 'lispref/buffers.texi')
-rw-r--r--lispref/buffers.texi6
1 files changed, 3 insertions, 3 deletions
diff --git a/lispref/buffers.texi b/lispref/buffers.texi
index 6204dfce339..30031a10d6e 100644
--- a/lispref/buffers.texi
+++ b/lispref/buffers.texi
@@ -202,7 +202,7 @@ An error is signaled if @var{buffer-or-name} does not identify an
existing buffer.
@end defun
-@defspec save-current-buffer body...
+@defspec save-current-buffer body@dots{}
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
@@ -215,7 +215,7 @@ of course. Instead, whichever buffer was current just before exit
remains current.
@end defspec
-@defmac with-current-buffer buffer-or-name body...
+@defmac with-current-buffer buffer-or-name body@dots{}
The @code{with-current-buffer} macro saves the identity of the current
buffer, makes @var{buffer-or-name} current, evaluates the @var{body}
forms, and finally restores the buffer. The return value is the value
@@ -227,7 +227,7 @@ An error is signaled if @var{buffer-or-name} does not identify an
existing buffer.
@end defmac
-@defmac with-temp-buffer body...
+@defmac with-temp-buffer body@dots{}
@anchor{Definition of with-temp-buffer}
The @code{with-temp-buffer} macro evaluates the @var{body} forms
with a temporary buffer as the current buffer. It saves the identity of