diff options
| author | Juri Linkov | 2005-10-17 06:44:50 +0000 |
|---|---|---|
| committer | Juri Linkov | 2005-10-17 06:44:50 +0000 |
| commit | a029bcbbaffe98c622a3002eb66861fddcf0845d (patch) | |
| tree | 74624d9c0a0b833219dd314aa1f23ffea57ed966 | |
| parent | 79af55a7ebdbe2f431851d96f38fbca08f7fe82c (diff) | |
| download | emacs-a029bcbbaffe98c622a3002eb66861fddcf0845d.tar.gz emacs-a029bcbbaffe98c622a3002eb66861fddcf0845d.zip | |
(Current Buffer): Replace `...' with `@dots{}' in `@defmac' and `@defspec'.
| -rw-r--r-- | lispref/buffers.texi | 6 |
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 | |||
| 202 | existing buffer. | 202 | existing buffer. |
| 203 | @end defun | 203 | @end defun |
| 204 | 204 | ||
| 205 | @defspec save-current-buffer body... | 205 | @defspec save-current-buffer body@dots{} |
| 206 | The @code{save-current-buffer} special form saves the identity of the | 206 | The @code{save-current-buffer} special form saves the identity of the |
| 207 | current buffer, evaluates the @var{body} forms, and finally restores | 207 | current buffer, evaluates the @var{body} forms, and finally restores |
| 208 | that buffer as current. The return value is the value of the last | 208 | 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 | |||
| 215 | remains current. | 215 | remains current. |
| 216 | @end defspec | 216 | @end defspec |
| 217 | 217 | ||
| 218 | @defmac with-current-buffer buffer-or-name body... | 218 | @defmac with-current-buffer buffer-or-name body@dots{} |
| 219 | The @code{with-current-buffer} macro saves the identity of the current | 219 | The @code{with-current-buffer} macro saves the identity of the current |
| 220 | buffer, makes @var{buffer-or-name} current, evaluates the @var{body} | 220 | buffer, makes @var{buffer-or-name} current, evaluates the @var{body} |
| 221 | forms, and finally restores the buffer. The return value is the value | 221 | 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 | |||
| 227 | existing buffer. | 227 | existing buffer. |
| 228 | @end defmac | 228 | @end defmac |
| 229 | 229 | ||
| 230 | @defmac with-temp-buffer body... | 230 | @defmac with-temp-buffer body@dots{} |
| 231 | @anchor{Definition of with-temp-buffer} | 231 | @anchor{Definition of with-temp-buffer} |
| 232 | The @code{with-temp-buffer} macro evaluates the @var{body} forms | 232 | The @code{with-temp-buffer} macro evaluates the @var{body} forms |
| 233 | with a temporary buffer as the current buffer. It saves the identity of | 233 | with a temporary buffer as the current buffer. It saves the identity of |