From: Stefan Monnier Date: Wed, 31 Oct 2001 02:15:40 +0000 (+0000) Subject: (ctl-x-map): Add binding for C-x (, C-x ) and C-x e. X-Git-Tag: ttn-vms-21-2-B4~18977 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=062e040d1b5a601dc4034df8397d6292bce48fe3;p=emacs.git (ctl-x-map): Add binding for C-x (, C-x ) and C-x e. --- 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)