Changeset 4204 for trunk/lisp/calendar/appt.el
- Timestamp:
- 05/01/07 18:04:59 (2 years ago)
- Files:
-
- trunk/lisp/calendar/appt.el (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/lisp/calendar/appt.el
r4190 r4204 234 234 (let ((appt-display-format 235 235 (if (eq appt-display-format 'ignore) 236 (cond (appt-msg-window 'window)237 (appt-visible 'echo))236 (cond (appt-msg-window 'window) 237 (appt-visible 'echo)) 238 238 appt-display-format))) 239 239 (cond ((eq appt-display-format 'window) … … 458 458 ;; By default, split the bottom window and use the lower part. 459 459 (appt-select-lowest-window) 460 (select-window (split-window))) 460 ;; Split the window, unless it's too small to do so. 461 (when (>= (window-height) (* 2 window-min-height)) 462 (select-window (split-window)))) 461 463 (switch-to-buffer appt-disp-buf)) 462 464 (calendar-set-mode-line
