diff options
author | Eli Zaretskii <eliz@gnu.org> | 2000-07-31 15:41:39 +0000 |
---|---|---|
committer | Eli Zaretskii <eliz@gnu.org> | 2000-07-31 15:41:39 +0000 |
commit | 7e2605e79eab476c4525664b1a96864c4b51e3a4 (patch) | |
tree | 37f40af18a97540ce3b44b6622e2a30c970fbadd /lisp/mail | |
parent | ef649575067fc8f6d43eb66821a94ce76b7eb830 (diff) | |
download | emacs-7e2605e79eab476c4525664b1a96864c4b51e3a4.tar.gz |
(rmail-start-mail): Use display-multi-frame-p
instead of looking at window-system.
Diffstat (limited to 'lisp/mail')
-rw-r--r-- | lisp/mail/rmail.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/mail/rmail.el b/lisp/mail/rmail.el index e3040e6a283..b603148e663 100644 --- a/lisp/mail/rmail.el +++ b/lisp/mail/rmail.el @@ -2767,7 +2767,7 @@ Deleted messages stay in the file until the \\[rmail-expunge] command is given." (compose-mail to subject others noerase nil yank-action sendactions) - (if (and window-system rmail-mail-new-frame) + (if (and (display-multi-frame-p) rmail-mail-new-frame) (prog1 (compose-mail to subject others noerase 'switch-to-buffer-other-frame |