diff options
author | Richard M. Stallman <rms@gnu.org> | 1997-04-29 02:07:51 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1997-04-29 02:07:51 +0000 |
commit | e2be31eb94cb354f99ee3c0bdc6571d7dd51cd01 (patch) | |
tree | 021312484e18eaae2a39aed97605d32906a69fa1 /lisp/mail/sendmail.el | |
parent | 6cb1060565713cfad8bfd696041c10b4b727d6f5 (diff) | |
download | emacs-e2be31eb94cb354f99ee3c0bdc6571d7dd51cd01.tar.gz |
Don't bind C-x m, C-x 4 m, C-x 5 m.
Diffstat (limited to 'lisp/mail/sendmail.el')
-rw-r--r-- | lisp/mail/sendmail.el | 13 |
1 files changed, 4 insertions, 9 deletions
diff --git a/lisp/mail/sendmail.el b/lisp/mail/sendmail.el index 7444a79aa0e..e60156977a2 100644 --- a/lisp/mail/sendmail.el +++ b/lisp/mail/sendmail.el @@ -1115,7 +1115,10 @@ and don't delete any header fields." (or (bolp) (newline)) (goto-char start)))) -;; Put these last, to reduce chance of lossage from quitting in middle of loading the file. +;; Put these commands last, to reduce chance of lossage from quitting +;; in middle of loading the file. + +;;;###autoload (add-hook 'same-window-buffer-names "*mail*") ;;;###autoload (defun mail (&optional noerase to subject in-reply-to cc replybuffer actions) @@ -1267,14 +1270,6 @@ The seventh argument ACTIONS is a list of actions to take (pop-to-buffer "*mail*")) (mail noerase to subject in-reply-to cc replybuffer sendactions)) -;;; Do not execute these when sendmail.el is loaded, -;;; only in loaddefs.el. -;;;###autoload (define-key ctl-x-map "m" 'mail) -;;;###autoload (define-key ctl-x-4-map "m" 'mail-other-window) -;;;###autoload (define-key ctl-x-5-map "m" 'mail-other-frame) - -;;;###autoload (add-hook 'same-window-buffer-names "*mail*") - ;;; Do not add anything but external entries on this page. (provide 'sendmail) |