diff options
| -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 | ||