changeset 42664:d8ac9a604877

(initial-scratch-message): Fix custom type, add group.
author Richard M. Stallman <rms@gnu.org>
date Fri, 11 Jan 2002 21:35:14 +0000
parents 76fc84e8802f
children c28cb7c3a4b5
files lisp/startup.el
diffstat 1 files changed, 3 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/startup.el	Fri Jan 11 21:29:13 2002 +0000
+++ b/lisp/startup.el	Fri Jan 11 21:35:14 2002 +0000
@@ -1024,7 +1024,9 @@
 ")
   "Initial message displayed in *scratch* buffer at startup.
 If this is nil, no message will be displayed."
-  :type 'string)
+  :type '(choice (text :tag "Message")
+		 (const :tag "none" nil))
+  :group 'initialization)
 
 
 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;