aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
Diffstat (limited to 'lisp')
-rw-r--r--lisp/ChangeLog4
-rw-r--r--lisp/calendar/appt.el5
2 files changed, 7 insertions, 2 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index b8232d98073..0873acd70a2 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,8 +1,8 @@
12007-11-24 Glenn Morris <rgm@gnu.org> 12007-11-24 Glenn Morris <rgm@gnu.org>
2 2
3 * calendar/appt.el: Remove leading `*' from defcustom doc-strings. 3 * calendar/appt.el: Remove leading `*' from defcustom doc-strings.
4 (appt-disp-window): Don't require electric. Remove 4 (appt-disp-window): Don't require electric. Simplify
5 minibuffer-avoidance code, since appt-select-lowest-window does that. 5 minibuffer-avoidance code.
6 (appt-select-lowest-window): Avoid minibuffer. 6 (appt-select-lowest-window): Avoid minibuffer.
7 7
8 * eshell/eshell.el: Remove leading `*' from defcustom doc-strings. 8 * eshell/eshell.el: Remove leading `*' from defcustom doc-strings.
diff --git a/lisp/calendar/appt.el b/lisp/calendar/appt.el
index 0c8b9b19188..c605cbef10d 100644
--- a/lisp/calendar/appt.el
+++ b/lisp/calendar/appt.el
@@ -436,6 +436,11 @@ displayed in a window:
436 "Display appointment message APPT-MSG in a separate buffer. 436 "Display appointment message APPT-MSG in a separate buffer.
437The appointment is due in MIN-TO-APP (a string) minutes. 437The appointment is due in MIN-TO-APP (a string) minutes.
438NEW-TIME is a string giving the date." 438NEW-TIME is a string giving the date."
439 ;; Make sure we're not in the minibuffer before splitting the window.
440 ;; FIXME this seems needlessly complicated?
441 (when (minibufferp)
442 (other-window 1)
443 (and (minibufferp) (display-multi-frame-p) (other-frame 1)))
439 (let ((this-window (selected-window)) 444 (let ((this-window (selected-window))
440 (appt-disp-buf (set-buffer (get-buffer-create appt-buffer-name)))) 445 (appt-disp-buf (set-buffer (get-buffer-create appt-buffer-name))))
441 (if (cdr (assq 'unsplittable (frame-parameters))) 446 (if (cdr (assq 'unsplittable (frame-parameters)))