aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLars Magne Ingebrigtsen2011-07-14 14:57:06 +0200
committerLars Magne Ingebrigtsen2011-07-14 14:57:06 +0200
commit621ef9abdb9106216353dae75a46fe64f8587406 (patch)
treec34d6b12bca6e359bac121403d4397c279df8f0b
parent85c1ab0bc7b3adcd5ba050786fd25754158f64df (diff)
downloademacs-621ef9abdb9106216353dae75a46fe64f8587406.tar.gz
emacs-621ef9abdb9106216353dae75a46fe64f8587406.zip
(initial-buffer-choice): Don't mention the `none' selection, which is against policy.
-rw-r--r--lisp/ChangeLog5
-rw-r--r--lisp/startup.el6
2 files changed, 7 insertions, 4 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 9814cae16bb..3cc219a01d9 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,8 @@
12011-07-14 Lars Magne Ingebrigtsen <larsi@gnus.org>
2
3 * startup.el (initial-buffer-choice): Don't mention the `none'
4 selection, which is against policy.
5
12011-07-14 Martin Rudalics <rudalics@gmx.at> 62011-07-14 Martin Rudalics <rudalics@gmx.at>
2 7
3 * window.el (display-buffer-normalize-special): Replace 8 * window.el (display-buffer-normalize-special): Replace
diff --git a/lisp/startup.el b/lisp/startup.el
index 66deb11623a..6953ed25ed4 100644
--- a/lisp/startup.el
+++ b/lisp/startup.el
@@ -43,14 +43,12 @@
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 string, visit the specified file 44startup screen. If the value is string, visit the specified file
45or directory using `find-file'. If t, open the `*scratch*' 45or directory using `find-file'. If t, open the `*scratch*'
46buffer. If `none', don't select anything, but show the 46buffer."
47buffer (if any) selected by the startup file."
48 :type '(choice 47 :type '(choice
49 (const :tag "Startup screen" nil) 48 (const :tag "Startup screen" nil)
50 (directory :tag "Directory" :value "~/") 49 (directory :tag "Directory" :value "~/")
51 (file :tag "File" :value "~/.emacs") 50 (file :tag "File" :value "~/.emacs")
52 (const :tag "Lisp scratch buffer" t) 51 (const :tag "Lisp scratch buffer" t))
53 (const :tag "Select no buffer" 'none))
54 :version "23.1" 52 :version "23.1"
55 :group 'initialization) 53 :group 'initialization)
56 54