diff options
| author | Stefan Monnier | 2000-05-25 19:06:34 +0000 |
|---|---|---|
| committer | Stefan Monnier | 2000-05-25 19:06:34 +0000 |
| commit | 5589b330a0abf7243a8aec08a4a785b4691c6b44 (patch) | |
| tree | 11b837fb1bb7d46c622e2ca721e01d0d698a1e74 | |
| parent | be83ecb2d79c045cb6cc9c0ceee749d14e392c64 (diff) | |
| download | emacs-5589b330a0abf7243a8aec08a4a785b4691c6b44.tar.gz emacs-5589b330a0abf7243a8aec08a4a785b4691c6b44.zip | |
(esc-map): Change ; to comment-dwim and use the new function
names for comment operations.
| -rw-r--r-- | lisp/bindings.el | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lisp/bindings.el b/lisp/bindings.el index 6d75d691de0..5f4f0889936 100644 --- a/lisp/bindings.el +++ b/lisp/bindings.el | |||
| @@ -661,10 +661,10 @@ language you are using." | |||
| 661 | (define-key esc-map "\C-t" 'transpose-sexps) | 661 | (define-key esc-map "\C-t" 'transpose-sexps) |
| 662 | (define-key ctl-x-map "\C-t" 'transpose-lines) | 662 | (define-key ctl-x-map "\C-t" 'transpose-lines) |
| 663 | 663 | ||
| 664 | (define-key esc-map ";" 'indent-for-comment) | 664 | (define-key esc-map ";" 'comment-dwim) |
| 665 | (define-key esc-map "j" 'indent-new-comment-line) | 665 | (define-key esc-map "j" 'comment-indent-new-line) |
| 666 | (define-key esc-map "\C-j" 'indent-new-comment-line) | 666 | (define-key esc-map "\C-j" 'comment-indent-new-line) |
| 667 | (define-key ctl-x-map ";" 'set-comment-column) | 667 | (define-key ctl-x-map ";" 'comment-set-column) |
| 668 | (define-key ctl-x-map "f" 'set-fill-column) | 668 | (define-key ctl-x-map "f" 'set-fill-column) |
| 669 | (define-key ctl-x-map "$" 'set-selective-display) | 669 | (define-key ctl-x-map "$" 'set-selective-display) |
| 670 | 670 | ||