aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
authorGlenn Morris2014-06-08 10:46:51 -0700
committerGlenn Morris2014-06-08 10:46:51 -0700
commit6d069b1b3ab171c86deed9c19ef9736d32d8fc43 (patch)
tree1693284bbc7abde24ce692e123c5e5802fbb63a2 /lisp
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 'lisp')
-rw-r--r--lisp/ChangeLog3
-rw-r--r--lisp/startup.el15
2 files changed, 11 insertions, 7 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 66afe67a614..ca2781b40f2 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,5 +1,8 @@
12014-06-08 Glenn Morris <rgm@gnu.org> 12014-06-08 Glenn Morris <rgm@gnu.org>
2 2
3 * startup.el (initial-buffer-choice): Doc fix.
4 Reset :version (adding an option does not merit a :version bump).
5
3 * bookmark.el (bookmark-load): 6 * bookmark.el (bookmark-load):
4 * uniquify.el (uniquify-buffer-name-style): Doc fixes. 7 * uniquify.el (uniquify-buffer-name-style): Doc fixes.
5 8
diff --git a/lisp/startup.el b/lisp/startup.el
index 5f1bdeadbd3..2f1d9af1cf1 100644
--- a/lisp/startup.el
+++ b/lisp/startup.el
@@ -42,20 +42,21 @@
42 "Buffer to show after starting Emacs. 42 "Buffer to show after starting Emacs.
43If the value is nil and `inhibit-startup-screen' is nil, show the 43If the value is nil and `inhibit-startup-screen' is nil, show the
44startup screen. If the value is a string, switch to a buffer 44startup screen. If the value is a string, switch to a buffer
45visiting the file or directory specified by that string. If the 45visiting the file or directory that the string specifies. If the
46value is a function, switch to the buffer returned by that 46value is a function, call it with no arguments and switch to the buffer
47function. If t, open the `*scratch*' buffer. 47that it returns. If t, open the `*scratch*' buffer.
48 48
49A string value also causes emacsclient to open the specified file 49If you use `emacsclient' with no target file, then it obeys any
50or directory when no target file is specified." 50string or function value that this variable has."
51 :type '(choice 51 :type '(choice
52 (const :tag "Startup screen" nil) 52 (const :tag "Startup screen" nil)
53 (directory :tag "Directory" :value "~/") 53 (directory :tag "Directory" :value "~/")
54 (file :tag "File" :value "~/.emacs") 54 (file :tag "File" :value "~/.emacs")
55 (const :tag "Notes buffer" remember-notes) 55 ;; Note sure about hard-coding this as an option...
56 (const :tag "Remember Mode notes buffer" remember-notes)
56 (function :tag "Function") 57 (function :tag "Function")
57 (const :tag "Lisp scratch buffer" t)) 58 (const :tag "Lisp scratch buffer" t))
58 :version "24.4" 59 :version "23.1"
59 :group 'initialization) 60 :group 'initialization)
60 61
61(defcustom inhibit-startup-screen nil 62(defcustom inhibit-startup-screen nil