Changeset 3340
- Timestamp:
- 2004年07月11日 07時31分50秒 (4 years ago)
- Files:
-
- branches/ASAGAO_emacs-21_3/lisp/ChangeLog.Meadow (modified) (1 diff)
- branches/ASAGAO_emacs-21_3/lisp/startup.el (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/ASAGAO_emacs-21_3/lisp/ChangeLog.Meadow
r3339 r3340 1 2004-07-11 MIYOSHI Masanori <miyoshi@meadowy.org> 2 3 * startup.el (fancy-splash-check-screen): Improve the condition to 4 stop splashing. 5 1 6 2004-07-10 MIYOSHI Masanori <miyoshi@meadowy.org> 2 7 branches/ASAGAO_emacs-21_3/lisp/startup.el
r3320 r3340 1190 1190 (defun fancy-splash-check-screen (buffer) 1191 1191 "Check if the current buffer is for splash screens." 1192 (unless (eq (current-buffer) buffer) 1192 (unless (or (eq (current-buffer) buffer) 1193 (eq (current-buffer) (get-buffer "*scratch*"))) 1193 1194 (throw 'stop-splashing nil))) 1194 1195
