Changeset 3341
- Timestamp:
- 07/11/04 07:32:47 (4 years ago)
- Files:
-
- branches/2.00/lisp/ChangeLog.Meadow (modified) (1 diff)
- branches/2.00/lisp/startup.el (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/2.00/lisp/ChangeLog.Meadow
r3338 r3341 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/2.00/lisp/startup.el
r3319 r3341 1181 1181 (defun fancy-splash-check-screen (buffer) 1182 1182 "Check if the current buffer is for splash screens." 1183 (unless (eq (current-buffer) buffer) 1183 (unless (or (eq (current-buffer) buffer) 1184 (eq (current-buffer) (get-buffer "*scratch*"))) 1184 1185 (throw 'stop-splashing nil))) 1185 1186
