diff options
author | Richard M. Stallman <rms@gnu.org> | 1997-04-29 02:07:34 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1997-04-29 02:07:34 +0000 |
commit | 6cb1060565713cfad8bfd696041c10b4b727d6f5 (patch) | |
tree | 41d251fd57f9acd811b079bbc884e5028ef16b7f /lisp/bindings.el | |
parent | fd03a412debda3914d406cb8dfad3effec3bb7a0 (diff) | |
download | emacs-6cb1060565713cfad8bfd696041c10b4b727d6f5.tar.gz |
Bind C-x m, C-x 4 m, C-x 5 m to compose-mail...
Diffstat (limited to 'lisp/bindings.el')
-rw-r--r-- | lisp/bindings.el | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lisp/bindings.el b/lisp/bindings.el index 40a9ae1b7df..dc651212399 100644 --- a/lisp/bindings.el +++ b/lisp/bindings.el @@ -485,6 +485,10 @@ for \\[find-tag] (which see)." (define-key esc-map "\t" 'lisp-complete-symbol) (define-key ctl-x-map "\C-e" 'eval-last-sexp) + +(define-key ctl-x-map "m" 'compose-mail) +(define-key ctl-x-4-map "m" 'compose-mail-other-window) +(define-key ctl-x-5-map "m" 'compose-mail-other-frame) (define-key ctl-x-map "r\C-@" 'point-to-register) (define-key ctl-x-map [?r ?\C-\ ] 'point-to-register) |