]> git.eshelyaron.com Git - emacs.git/commitdiff
(initial-buffer-choice): Don't mention the `none' selection, which is against policy.
authorLars Magne Ingebrigtsen <larsi@gnus.org>
Thu, 14 Jul 2011 12:57:06 +0000 (14:57 +0200)
committerLars Magne Ingebrigtsen <larsi@gnus.org>
Thu, 14 Jul 2011 12:57:06 +0000 (14:57 +0200)
lisp/ChangeLog
lisp/startup.el

index 9814cae16bb3923abf33d8e2809fec3d617f6c82..3cc219a01d9d8fe43386e877b6c2ff1a3ea4757c 100644 (file)
@@ -1,3 +1,8 @@
+2011-07-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
+
+       * startup.el (initial-buffer-choice): Don't mention the `none'
+       selection, which is against policy.
+
 2011-07-14  Martin Rudalics  <rudalics@gmx.at>
 
        * window.el (display-buffer-normalize-special): Replace
index 66deb11623ae2cb4735b62f9a9d48a852829772d..6953ed25ed490e480ca39a33cd868a091eb4db74 100644 (file)
 If the value is nil and `inhibit-startup-screen' is nil, show the
 startup screen.  If the value is string, visit the specified file
 or directory using `find-file'.  If t, open the `*scratch*'
-buffer.  If `none', don't select anything, but show the
-buffer (if any) selected by the startup file."
+buffer."
   :type '(choice
          (const     :tag "Startup screen" nil)
          (directory :tag "Directory" :value "~/")
          (file      :tag "File" :value "~/.emacs")
-         (const     :tag "Lisp scratch buffer" t)
-         (const     :tag "Select no buffer" 'none))
+         (const     :tag "Lisp scratch buffer" t))
   :version "23.1"
   :group 'initialization)