(visual-line-mode-map): Remove M-[ and M-] bindings.
authorChong Yidong <cyd@stupidchicken.com>
Sun, 4 Jan 2009 08:30:58 +0000 (08:30 +0000)
committerChong Yidong <cyd@stupidchicken.com>
Sun, 4 Jan 2009 08:30:58 +0000 (08:30 +0000)
lisp/simple.el

index 4f4c611..cbcd667 100644 (file)
@@ -4514,8 +4514,10 @@ the variable `line-move-visual'."
     (define-key map [remap kill-line] 'kill-visual-line)
     (define-key map [remap move-beginning-of-line] 'beginning-of-visual-line)
     (define-key map [remap move-end-of-line]  'end-of-visual-line)
-    (define-key map "\M-[" 'previous-logical-line)
-    (define-key map "\M-]" 'next-logical-line)
+    ;; These keybindings interfere with xterm function keys.  Are
+    ;; there any other suitable bindings?
+    ;; (define-key map "\M-[" 'previous-logical-line)
+    ;; (define-key map "\M-]" 'next-logical-line)
     map))
 
 (defcustom visual-line-fringe-indicators '(nil nil)