]> git.eshelyaron.com Git - emacs.git/commitdiff
(appt-disp-window): Do not split small windows.
authorGlenn Morris <rgm@gnu.org>
Sat, 14 Apr 2007 02:36:58 +0000 (02:36 +0000)
committerGlenn Morris <rgm@gnu.org>
Sat, 14 Apr 2007 02:36:58 +0000 (02:36 +0000)
Suggested by Jeff Miller <jmiller@cablespeed.com>.

lisp/calendar/appt.el

index 82fa0e66dbf3e29b8c09b834c2177b45ac33d6f0..02865c994e38094448e8ca8828e494268fc9f874 100644 (file)
@@ -233,8 +233,8 @@ The variable `appt-audible' controls the audible reminder."
   ;; vars appt-msg-window and appt-visible are dropped.
   (let ((appt-display-format
          (if (eq appt-display-format 'ignore)
-             (cond (appt-msg-window 'window)
-                   (appt-visible 'echo))
+               (cond (appt-msg-window 'window)
+                     (appt-visible 'echo))
            appt-display-format)))
     (cond ((eq appt-display-format 'window)
            (funcall appt-disp-window-function
@@ -457,7 +457,9 @@ NEW-TIME is a string giving the date."
                  (same-window-p (buffer-name appt-disp-buf)))
        ;; By default, split the bottom window and use the lower part.
        (appt-select-lowest-window)
-        (select-window (split-window)))
+        ;; Split the window, unless it's too small to do so.
+        (when (>= (window-height) (* 2 window-min-height))
+          (select-window (split-window))))
       (switch-to-buffer appt-disp-buf))
     (calendar-set-mode-line
      (format " Appointment in %s minutes. %s " min-to-app new-time))