aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKarl Heuer1995-05-17 20:41:36 +0000
committerKarl Heuer1995-05-17 20:41:36 +0000
commit193c3837a17f1bac7daaefdd9eec5cd203ff28a2 (patch)
treed9dfbd5b6ef64c651d05bad2c30df3282847d24e
parent73c017045aeb8f666869cd15519f1249fff9812e (diff)
downloademacs-193c3837a17f1bac7daaefdd9eec5cd203ff28a2.tar.gz
emacs-193c3837a17f1bac7daaefdd9eec5cd203ff28a2.zip
(Fmake_indirect_buffer): Fix interactive spec.
-rw-r--r--src/buffer.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/buffer.c b/src/buffer.c
index 915a3919136..bad812ba9e5 100644
--- a/src/buffer.c
+++ b/src/buffer.c
@@ -316,7 +316,7 @@ The value is never nil.")
316 316
317DEFUN ("make-indirect-buffer", 317DEFUN ("make-indirect-buffer",
318 Fmake_indirect_buffer, Smake_indirect_buffer, 2, 2, 318 Fmake_indirect_buffer, Smake_indirect_buffer, 2, 2,
319 "BMake indirect buffer (to buffer): \nbName of indirect buffer: ", 319 "bMake indirect buffer (to buffer): \nBName of indirect buffer: ",
320 "Create and return an indirect buffer for buffer BASE, named NAME.\n\ 320 "Create and return an indirect buffer for buffer BASE, named NAME.\n\
321BASE should be an existing buffer (or buffer name).\n\ 321BASE should be an existing buffer (or buffer name).\n\
322NAME should be a string which is not the name of an existing buffer.") 322NAME should be a string which is not the name of an existing buffer.")