From 062e040d1b5a601dc4034df8397d6292bce48fe3 Mon Sep 17 00:00:00 2001 From: Stefan Monnier Date: Wed, 31 Oct 2001 02:15:40 +0000 Subject: [PATCH] (ctl-x-map): Add binding for C-x (, C-x ) and C-x e. --- lisp/bindings.el | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lisp/bindings.el b/lisp/bindings.el index c4327ed6168..331c9ab8f21 100644 --- a/lisp/bindings.el +++ b/lisp/bindings.el @@ -574,6 +574,9 @@ language you are using." (define-key ctl-x-map "nw" 'widen) ;; (define-key ctl-x-map "n" 'narrow-to-region) ;; (define-key ctl-x-map "w" 'widen) +(define-key ctl-x-map "(" 'start-kbd-macro) +(define-key ctl-x-map ")" 'end-kbd-macro) +(define-key ctl-x-map "e" 'call-last-kbd-macro) (define-key global-map "\C-j" 'newline-and-indent) (define-key global-map "\C-m" 'newline) -- 2.39.5