minor-mode-map-alist to nil while displaying splash screens.
+2001-08-29 Gerd Moellmann <gerd@gnu.org>
+
+ * startup.el (fancy-splash-screens): Temporarily set
+ minor-mode-map-alist to nil while displaying splash screens.
+
2001-08-28 Andre Spiegel <spiegel@gnu.org>
* vc.el (vc-revert-file): Call the backend even if the FILE's
(setq tab-width 20)
(let ((old-hourglass display-hourglass)
(splash-buffer (current-buffer))
+ (old-minor-mode-map-alist minor-mode-map-alist)
timer)
(catch 'stop-splashing
(unwind-protect
(define-key map [mode-line t] 'ignore)
(setq cursor-type nil
display-hourglass nil
+ minor-mode-map-alist nil
buffer-undo-list t
mode-line-format (propertize "---- %b %-"
'face '(:weight bold))
splash-buffer))
(recursive-edit))
(cancel-timer timer)
- (setq display-hourglass old-hourglass)
+ (setq display-hourglass old-hourglass
+ minor-mode-map-alist old-minor-mode-map-alist)
(kill-buffer splash-buffer)))))