comparison lisp/startup.el @ 61600:3a5e293553a1

(fancy-splash-max-time): Just 30 seconds. (fancy-splash-delay): Just 7. (fancy-splash-screens): No time limit other than fancy-splash-max-time.
author Richard M. Stallman <rms@gnu.org>
date Sun, 17 Apr 2005 16:00:20 +0000
parents 9e1e4bffa450
children a473e4d3af75
comparison
equal deleted inserted replaced
61599:4cb17d270cf3 61600:3a5e293553a1
1083 "Fancy splash screen when Emacs starts." 1083 "Fancy splash screen when Emacs starts."
1084 :version "21.1" 1084 :version "21.1"
1085 :group 'initialization) 1085 :group 'initialization)
1086 1086
1087 1087
1088 (defcustom fancy-splash-delay 10 1088 (defcustom fancy-splash-delay 7
1089 "*Delay in seconds between splash screens." 1089 "*Delay in seconds between splash screens."
1090 :group 'fancy-splash-screen 1090 :group 'fancy-splash-screen
1091 :type 'integer) 1091 :type 'integer)
1092 1092
1093 1093
1094 (defcustom fancy-splash-max-time 60 1094 (defcustom fancy-splash-max-time 30
1095 "*Show splash screens for at most this number of seconds. 1095 "*Show splash screens for at most this number of seconds.
1096 Values less than 60 seconds are ignored." 1096 Values less than twice `fancy-splash-delay' are ignored."
1097 :group 'fancy-splash-screen 1097 :group 'fancy-splash-screen
1098 :type 'integer) 1098 :type 'integer)
1099 1099
1100 1100
1101 (defcustom fancy-splash-image nil 1101 (defcustom fancy-splash-image nil
1269 minor-mode-map-alist nil 1269 minor-mode-map-alist nil
1270 buffer-undo-list t 1270 buffer-undo-list t
1271 mode-line-format (propertize "---- %b %-" 1271 mode-line-format (propertize "---- %b %-"
1272 'face '(:weight bold)) 1272 'face '(:weight bold))
1273 fancy-splash-stop-time (+ (float-time) 1273 fancy-splash-stop-time (+ (float-time)
1274 (max 60 fancy-splash-max-time)) 1274 fancy-splash-max-time)
1275 timer (run-with-timer 0 fancy-splash-delay 1275 timer (run-with-timer 0 fancy-splash-delay
1276 #'fancy-splash-screens-1 1276 #'fancy-splash-screens-1
1277 splash-buffer)) 1277 splash-buffer))
1278 (recursive-edit)) 1278 (recursive-edit))
1279 (cancel-timer timer) 1279 (cancel-timer timer)