aboutsummaryrefslogtreecommitdiffstats
path: root/lispref/buffers.texi
diff options
context:
space:
mode:
authorGerd Moellmann <[email protected]>2000-01-05 14:29:37 +0000
committerGerd Moellmann <[email protected]>2000-01-05 14:29:37 +0000
commit176c9de4b4366110131c6d5fc1cc812d706c41fa (patch)
tree3a2402cad7383af69c1b6f80feca649a75ff4e15 /lispref/buffers.texi
parentc142ce81fc9f5cd852d843fd5cd994155c1051e8 (diff)
Remove obsolete @tindex commands.
Diffstat (limited to 'lispref/buffers.texi')
-rw-r--r--lispref/buffers.texi3
1 files changed, 0 insertions, 3 deletions
diff --git a/lispref/buffers.texi b/lispref/buffers.texi
index 38d0b6ea02..8bc4cb3fdd 100644
--- a/lispref/buffers.texi
+++ b/lispref/buffers.texi
@@ -202,7 +202,6 @@ existing buffer.
@end defun
@defspec save-current-buffer body...
-@tindex save-current-buffer
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
@@ -216,7 +215,6 @@ remains current.
@end defspec
@defmac with-current-buffer buffer body...
-@tindex with-current-buffer
The @code{with-current-buffer} macro saves the identity of the current
buffer, makes @var{buffer} current, evaluates the @var{body} forms, and
finally restores the buffer. The return value is the value of the last
@@ -225,7 +223,6 @@ abnormal exit via @code{throw} or error (@pxref{Nonlocal Exits}).
@end defmac
@defmac with-temp-buffer body...
-@tindex 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
the current buffer, creates a temporary buffer and makes it current,