aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefan Monnier2000-05-25 19:06:34 +0000
committerStefan Monnier2000-05-25 19:06:34 +0000
commit5589b330a0abf7243a8aec08a4a785b4691c6b44 (patch)
tree11b837fb1bb7d46c622e2ca721e01d0d698a1e74
parentbe83ecb2d79c045cb6cc9c0ceee749d14e392c64 (diff)
downloademacs-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.el8
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