From: Richard M. Stallman Date: Thu, 29 Jul 1993 18:24:32 +0000 (+0000) Subject: Do the global key bindings only via loaddefs.el, X-Git-Tag: emacs-19.34~11509 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=7520f3189088b9919d0780807c89892aa110ae23;p=emacs.git Do the global key bindings only via loaddefs.el, not when sendmail.el is loaded. --- diff --git a/lisp/mail/sendmail.el b/lisp/mail/sendmail.el index 5eb37c9c32d..48a4ce051bc 100644 --- a/lisp/mail/sendmail.el +++ b/lisp/mail/sendmail.el @@ -831,16 +831,11 @@ 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)) - -;;;###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) - +;;; 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) ;;; Do not add anything but external entries on this page.