diff options
| author | Lars Magne Ingebrigtsen | 2011-07-14 14:57:06 +0200 |
|---|---|---|
| committer | Lars Magne Ingebrigtsen | 2011-07-14 14:57:06 +0200 |
| commit | 621ef9abdb9106216353dae75a46fe64f8587406 (patch) | |
| tree | c34d6b12bca6e359bac121403d4397c279df8f0b | |
| parent | 85c1ab0bc7b3adcd5ba050786fd25754158f64df (diff) | |
| download | emacs-621ef9abdb9106216353dae75a46fe64f8587406.tar.gz emacs-621ef9abdb9106216353dae75a46fe64f8587406.zip | |
(initial-buffer-choice): Don't mention the `none' selection, which is against policy.
| -rw-r--r-- | lisp/ChangeLog | 5 | ||||
| -rw-r--r-- | lisp/startup.el | 6 |
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 @@ | |||
| 1 | 2011-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 | |||
| 1 | 2011-07-14 Martin Rudalics <rudalics@gmx.at> | 6 | 2011-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 @@ | |||
| 43 | If the value is nil and `inhibit-startup-screen' is nil, show the | 43 | If the value is nil and `inhibit-startup-screen' is nil, show the |
| 44 | startup screen. If the value is string, visit the specified file | 44 | startup screen. If the value is string, visit the specified file |
| 45 | or directory using `find-file'. If t, open the `*scratch*' | 45 | or directory using `find-file'. If t, open the `*scratch*' |
| 46 | buffer. If `none', don't select anything, but show the | 46 | buffer." |
| 47 | buffer (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 | ||