diff options
| author | Eli Zaretskii | 2000-07-31 15:34:07 +0000 |
|---|---|---|
| committer | Eli Zaretskii | 2000-07-31 15:34:07 +0000 |
| commit | fbebec273d7e0e303404885cf36f75f298cea482 (patch) | |
| tree | 114b7b146497483bc677a9305a4a08602569c017 | |
| parent | 141855659185e5c657c8e4534f9ea27d023857eb (diff) | |
| download | emacs-fbebec273d7e0e303404885cf36f75f298cea482.tar.gz emacs-fbebec273d7e0e303404885cf36f75f298cea482.zip | |
(appt-disp-window): Use display-multi-frame-p
instead of window-system.
| -rw-r--r-- | lisp/calendar/appt.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/calendar/appt.el b/lisp/calendar/appt.el index 623d94cd96a..8c8076a8413 100644 --- a/lisp/calendar/appt.el +++ b/lisp/calendar/appt.el | |||
| @@ -381,7 +381,7 @@ The following variables control appointment notification: | |||
| 381 | (if (equal (selected-window) (minibuffer-window)) | 381 | (if (equal (selected-window) (minibuffer-window)) |
| 382 | (if (other-window 1) | 382 | (if (other-window 1) |
| 383 | (select-window (other-window 1)) | 383 | (select-window (other-window 1)) |
| 384 | (if window-system | 384 | (if (display-multi-frame-p) |
| 385 | (select-frame (other-frame 1))))) | 385 | (select-frame (other-frame 1))))) |
| 386 | 386 | ||
| 387 | (let* ((this-buffer (current-buffer)) | 387 | (let* ((this-buffer (current-buffer)) |