aboutsummaryrefslogtreecommitdiffstats
path: root/doc/lispref
diff options
context:
space:
mode:
authorGlenn Morris2014-06-08 10:46:51 -0700
committerGlenn Morris2014-06-08 10:46:51 -0700
commit6d069b1b3ab171c86deed9c19ef9736d32d8fc43 (patch)
tree1693284bbc7abde24ce692e123c5e5802fbb63a2 /doc/lispref
parent99d8aedf0d6ab3fff025f72daf1f9bd28b07a8d2 (diff)
downloademacs-6d069b1b3ab171c86deed9c19ef9736d32d8fc43.tar.gz
emacs-6d069b1b3ab171c86deed9c19ef9736d32d8fc43.zip
Small doc updates re initial-buffer-choice
* doc/emacs/entering.texi (Entering Emacs): Small fix re initial-buffer-choice. * doc/emacs/misc.texi (emacsclient Options): Copyedit. * doc/lispref/os.texi (Startup Summary): Small fix for initial-buffer-choice. * lisp/startup.el (initial-buffer-choice): Doc fix. Reset :version (adding an option does not merit a :version bump).
Diffstat (limited to 'doc/lispref')
-rw-r--r--doc/lispref/ChangeLog2
-rw-r--r--doc/lispref/os.texi15
2 files changed, 12 insertions, 5 deletions
diff --git a/doc/lispref/ChangeLog b/doc/lispref/ChangeLog
index aa5589e1c16..2b00d9743b7 100644
--- a/doc/lispref/ChangeLog
+++ b/doc/lispref/ChangeLog
@@ -1,5 +1,7 @@
12014-06-08 Glenn Morris <rgm@gnu.org> 12014-06-08 Glenn Morris <rgm@gnu.org>
2 2
3 * os.texi (Startup Summary): Small fix for initial-buffer-choice.
4
3 * files.texi (Subroutines of Visiting): Mention uniquify. 5 * files.texi (Subroutines of Visiting): Mention uniquify.
4 6
5 * numbers.texi (Comparison of Numbers): Copyedits. 7 * numbers.texi (Comparison of Numbers): Copyedits.
diff --git a/doc/lispref/os.texi b/doc/lispref/os.texi
index 272a356c7fe..59ad376436a 100644
--- a/doc/lispref/os.texi
+++ b/doc/lispref/os.texi
@@ -194,11 +194,16 @@ It processes any command-line options that were not handled earlier.
194It now exits if the option @code{--batch} was specified. 194It now exits if the option @code{--batch} was specified.
195 195
196@item 196@item
197If @code{initial-buffer-choice} is a string, it visits the file with 197If @code{initial-buffer-choice} is a string, it visits the file (or
198that name. If it is a function, it calls the function and selects the 198directory) with that name. If it is a function, it calls the function
199buffer returned by the function. It it is @code{t}, it selects the 199with no arguments and selects the buffer that it returns.
200@file{*scratch*} buffer. If the @file{*scratch*} buffer exists and is 200@ignore
201empty, it inserts @code{initial-scratch-message} into that buffer. 201@c I do not think this should be mentioned. AFAICS it is just a dodge
202@c around inhibit-startup-screen not being settable on a site-wide basis.
203If it is @code{t}, it selects the @file{*scratch*} buffer.
204@end ignore
205If the @file{*scratch*} buffer exists and is empty, it inserts
206@code{initial-scratch-message} into that buffer.
202 207
203@c To make things nice and confusing, the next three items can be 208@c To make things nice and confusing, the next three items can be
204@c called from two places. If displaying a startup screen, they are 209@c called from two places. If displaying a startup screen, they are