summaryrefslogtreecommitdiff
path: root/lisp/mail
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1996-01-25 20:28:07 +0000
committerRichard M. Stallman <rms@gnu.org>1996-01-25 20:28:07 +0000
commit4a78b1d268185fbc044cd913e0983a29f683a492 (patch)
tree10fc1c8f09eea09ee866019873ccd80aff54a598 /lisp/mail
parentf71e3740283a4117d1a11099bdcb288212a5d008 (diff)
downloademacs-4a78b1d268185fbc044cd913e0983a29f683a492.tar.gz
(rmail-start-mail): Set mail-dedicated-frame frame param.
Diffstat (limited to 'lisp/mail')
-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."
(if (and window-system rmail-mail-new-frame)
(prog1
(apply 'mail-other-frame args)
+ ;; This is not a standard frame parameter;
+ ;; nothing except sendmail.el looks at it.
(modify-frame-parameters (selected-frame)
- '((dedicated . t))))
+ '((mail-dedicated-frame . t))))
(apply 'mail-other-window args)))
(defun rmail-mail ()