diff options
| author | Stefan Monnier | 2001-10-31 02:15:40 +0000 |
|---|---|---|
| committer | Stefan Monnier | 2001-10-31 02:15:40 +0000 |
| commit | 062e040d1b5a601dc4034df8397d6292bce48fe3 (patch) | |
| tree | 253bba91a1c1bf5822156102f9c54b3ce74c59f2 | |
| parent | d09302892e854ce0f906ad7f3dabe5895a1bc3ec (diff) | |
| download | emacs-062e040d1b5a601dc4034df8397d6292bce48fe3.tar.gz emacs-062e040d1b5a601dc4034df8397d6292bce48fe3.zip | |
(ctl-x-map): Add binding for C-x (, C-x ) and C-x e.
| -rw-r--r-- | lisp/bindings.el | 3 |
1 files changed, 3 insertions, 0 deletions
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." | |||
| 574 | (define-key ctl-x-map "nw" 'widen) | 574 | (define-key ctl-x-map "nw" 'widen) |
| 575 | ;; (define-key ctl-x-map "n" 'narrow-to-region) | 575 | ;; (define-key ctl-x-map "n" 'narrow-to-region) |
| 576 | ;; (define-key ctl-x-map "w" 'widen) | 576 | ;; (define-key ctl-x-map "w" 'widen) |
| 577 | (define-key ctl-x-map "(" 'start-kbd-macro) | ||
| 578 | (define-key ctl-x-map ")" 'end-kbd-macro) | ||
| 579 | (define-key ctl-x-map "e" 'call-last-kbd-macro) | ||
| 577 | 580 | ||
| 578 | (define-key global-map "\C-j" 'newline-and-indent) | 581 | (define-key global-map "\C-j" 'newline-and-indent) |
| 579 | (define-key global-map "\C-m" 'newline) | 582 | (define-key global-map "\C-m" 'newline) |