]> git.eshelyaron.com Git - emacs.git/commitdiff
(esc-map): Revert `j' and `C-j' bindings to
authorStefan Monnier <monnier@iro.umontreal.ca>
Sun, 14 Oct 2001 03:17:17 +0000 (03:17 +0000)
committerStefan Monnier <monnier@iro.umontreal.ca>
Sun, 14 Oct 2001 03:17:17 +0000 (03:17 +0000)
indent-new-comment-line from comment-indent-new-line.

lisp/ChangeLog
lisp/bindings.el

index 803de67e1759a1ca5cdf417afdc670a705d5a044..8dc3ad6fb9286df00d0867a8e279cc1a14ef0f4f 100644 (file)
@@ -1,3 +1,8 @@
+2001-10-13  Stefan Monnier  <monnier@cs.yale.edu>
+
+       * bindings.el (esc-map): Revert `j' and `C-j' bindings to
+       indent-new-comment-line from comment-indent-new-line.
+
 2001-10-13  Eli Zaretskii  <eliz@is.elta.co.il>
 
        * bindings.el <Local Variables>: Remove no-byte-compile, since
@@ -22,8 +27,8 @@
 
 2001-10-04  Andrew Innes  <andrewi@gnu.org>
 
-       * faces.el (face-font-registry-alternatives) [windows-nt]: Make
-       gb2312 an alias for gb2312.1980.
+       * faces.el (face-font-registry-alternatives) [windows-nt]:
+       Make gb2312 an alias for gb2312.1980.
 
 2001-10-03  Stefan Monnier  <monnier@cs.yale.edu>
 
index f412f85dee866df058f1c48f7036b4f7cdb66297..45a6d57c0374aa8e983197181793bf0367d2654f 100644 (file)
@@ -804,8 +804,8 @@ language you are using."
 (define-key ctl-x-map "\C-t" 'transpose-lines)
 
 (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 esc-map "j" 'indent-new-comment-line)
+(define-key esc-map "\C-j" 'indent-new-comment-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)