comparison lisp/startup.el @ 68337:a3986bd22732

(inhibit-splash-screen, initial-scratch-message): Doc fixes.
author Luc Teirlinck <teirllm@auburn.edu>
date Sun, 22 Jan 2006 23:14:25 +0000
parents 667bc6386741
children 919e61a6e661 9b150bc96d33 5b7d410e31f9
comparison
equal deleted inserted replaced
68336:f7c8bf774365 68337:a3986bd22732
39 (defgroup initialization nil 39 (defgroup initialization nil
40 "Emacs start-up procedure." 40 "Emacs start-up procedure."
41 :group 'internal) 41 :group 'internal)
42 42
43 (defcustom inhibit-splash-screen nil 43 (defcustom inhibit-splash-screen nil
44 "*Non-nil inhibits the startup screen. 44 "Non-nil inhibits the startup screen.
45 It also inhibits display of the initial message in the *scratch* buffer.
46
45 This is for use in your personal init file, once you are familiar 47 This is for use in your personal init file, once you are familiar
46 with the contents of the startup screen." 48 with the contents of the startup screen."
47 :type 'boolean 49 :type 'boolean
48 :group 'initialization) 50 :group 'initialization)
49 51
1085 ;; If you want to create a file, visit that file with C-x C-f, 1087 ;; If you want to create a file, visit that file with C-x C-f,
1086 ;; then enter the text in that file's own buffer. 1088 ;; then enter the text in that file's own buffer.
1087 1089
1088 ") 1090 ")
1089 "Initial message displayed in *scratch* buffer at startup. 1091 "Initial message displayed in *scratch* buffer at startup.
1090 If this is nil, no message will be displayed." 1092 If this is nil, no message will be displayed.
1093 If `inhibit-splash-screen' is non-nil, then no message is displayed,
1094 regardless of the value of this variable."
1091 :type '(choice (text :tag "Message") 1095 :type '(choice (text :tag "Message")
1092 (const :tag "none" nil)) 1096 (const :tag "none" nil))
1093 :group 'initialization) 1097 :group 'initialization)
1094 1098
1095 1099