From: Richard M. Stallman Date: Thu, 25 Jan 1996 20:28:07 +0000 (+0000) Subject: (rmail-start-mail): Set mail-dedicated-frame frame param. X-Git-Tag: emacs-19.34~1490 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=7ab4b7ad3d511be278750cd8b6580c7bd96d353b;p=emacs.git (rmail-start-mail): Set mail-dedicated-frame frame param. --- 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 ()