aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/mail/rmail.el4
1 files changed, 3 insertions, 1 deletions
diff --git a/lisp/mail/rmail.el b/lisp/mail/rmail.el
index a63e9de6323..31be2304bb0 100644
--- a/lisp/mail/rmail.el
+++ b/lisp/mail/rmail.el
@@ -2053,8 +2053,10 @@ Deleted messages stay in the file until the \\[rmail-expunge] command is given."
2053 (if (and window-system rmail-mail-new-frame) 2053 (if (and window-system rmail-mail-new-frame)
2054 (prog1 2054 (prog1
2055 (apply 'mail-other-frame args) 2055 (apply 'mail-other-frame args)
2056 ;; This is not a standard frame parameter;
2057 ;; nothing except sendmail.el looks at it.
2056 (modify-frame-parameters (selected-frame) 2058 (modify-frame-parameters (selected-frame)
2057 '((dedicated . t)))) 2059 '((mail-dedicated-frame . t))))
2058 (apply 'mail-other-window args))) 2060 (apply 'mail-other-window args)))
2059 2061
2060(defun rmail-mail () 2062(defun rmail-mail ()