diff options
| author | Jim Blandy <jimb@redhat.com> | 1992-07-15 03:24:58 +0000 |
|---|---|---|
| committer | Jim Blandy <jimb@redhat.com> | 1992-07-15 03:24:58 +0000 |
| commit | 0cc89026beff8f9f7b136f4464934675fe50cfcd (patch) | |
| tree | bac0be283b70cdaec9095daaeae1e3fd291c56af /lisp/mail/sendmail.el | |
| parent | f98955eaaa3d2c459b373a7b4c5d1176a18687d9 (diff) | |
| download | emacs-0cc89026beff8f9f7b136f4464934675fe50cfcd.tar.gz | |
*** empty log message ***
Diffstat (limited to 'lisp/mail/sendmail.el')
| -rw-r--r-- | lisp/mail/sendmail.el | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lisp/mail/sendmail.el b/lisp/mail/sendmail.el index 7df1c7380ce..a9f6c864fec 100644 --- a/lisp/mail/sendmail.el +++ b/lisp/mail/sendmail.el @@ -647,10 +647,10 @@ The seventh argument ACTIONS is a list of actions to take (mail noerase to subject in-reply-to cc replybuffer sendactions)) ;;;###autoload -(defun mail-other-screen (&optional noerase to subject in-reply-to cc replybuffer sendactions) - "Like `mail' command, but display mail buffer in another screen." +(defun mail-other-frame (&optional noerase to subject in-reply-to cc replybuffer sendactions) + "Like `mail' command, but display mail buffer in another frame." (interactive "P") - (let ((pop-up-screens t)) + (let ((pop-up-frames t)) (pop-to-buffer "*mail*")) (mail noerase to subject in-reply-to cc replybuffer sendactions)) @@ -659,7 +659,7 @@ The seventh argument ACTIONS is a list of actions to take (define-key ctl-x-4-map "m" 'mail-other-window) ;;;###autoload -(define-key ctl-x-5-map "m" 'mail-other-screen) +(define-key ctl-x-5-map "m" 'mail-other-frame) ;;; Do not add anything but external entries on this page. |
