changeset 29216:bc6192b0e1af

(esc-map): Change ; to comment-dwim and use the new function names for comment operations.
author Stefan Monnier <monnier@iro.umontreal.ca>
date Thu, 25 May 2000 19:06:34 +0000
parents 21c457830b9d
children a14ae8095fe4
files lisp/bindings.el
diffstat 1 files changed, 4 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/bindings.el	Thu May 25 19:05:46 2000 +0000
+++ b/lisp/bindings.el	Thu May 25 19:06:34 2000 +0000
@@ -661,10 +661,10 @@
 (define-key esc-map "\C-t" 'transpose-sexps)
 (define-key ctl-x-map "\C-t" 'transpose-lines)
 
-(define-key esc-map ";" 'indent-for-comment)
-(define-key esc-map "j" 'indent-new-comment-line)
-(define-key esc-map "\C-j" 'indent-new-comment-line)
-(define-key ctl-x-map ";" 'set-comment-column)
+(define-key esc-map ";" 'comment-dwim)
+(define-key esc-map "j" 'comment-indent-new-line)
+(define-key esc-map "\C-j" 'comment-indent-new-line)
+(define-key ctl-x-map ";" 'comment-set-column)
 (define-key ctl-x-map "f" 'set-fill-column)
 (define-key ctl-x-map "$" 'set-selective-display)