diff options
author | Juri Linkov <juri@linkov.net> | 2019-10-11 01:45:54 +0300 |
---|---|---|
committer | Juri Linkov <juri@linkov.net> | 2019-10-11 01:45:54 +0300 |
commit | bb392a9c8dab154cb9c80decf2ce4cf2da80e635 (patch) | |
tree | ad3545fcb828065f937f8f8b7fe7b10dc3bc776c | |
parent | e776ba66a308d9760cfb8d05fa59bdbd2af1c2ca (diff) | |
download | emacs-bb392a9c8dab154cb9c80decf2ce4cf2da80e635.tar.gz |
* lisp/subr.el (ctl-x-t-prefix): Bind new alias or ctl-x-6-map to 'C-x t'.
-rw-r--r-- | lisp/subr.el | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lisp/subr.el b/lisp/subr.el index 010443a56b5..cb59802f8b8 100644 --- a/lisp/subr.el +++ b/lisp/subr.el @@ -1242,6 +1242,8 @@ The normal global definition of the character C-x indirects to this keymap.") "Keymap for tab commands.") (defalias 'ctl-x-6-prefix ctl-x-6-map) (define-key ctl-x-map "6" 'ctl-x-6-prefix) +(defalias 'ctl-x-t-prefix ctl-x-6-map) +(define-key ctl-x-map "t" 'ctl-x-t-prefix) ;;;; Event manipulation functions. |