summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChong Yidong <cyd@stupidchicken.com>2009-01-04 08:30:58 +0000
committerChong Yidong <cyd@stupidchicken.com>2009-01-04 08:30:58 +0000
commitb316b2b864721a69325648fcac13289e27f961be (patch)
treeff6bdab97ff45f44ff644ed78f40b21f41165ba4
parent5d0fba46389591cfd29bb8dd593916aacbe17efa (diff)
downloademacs-b316b2b864721a69325648fcac13289e27f961be.tar.gz
(visual-line-mode-map): Remove M-[ and M-] bindings.
-rw-r--r--lisp/simple.el6
1 files changed, 4 insertions, 2 deletions
diff --git a/lisp/simple.el b/lisp/simple.el
index 4f4c611df23..cbcd6672b23 100644
--- a/lisp/simple.el
+++ b/lisp/simple.el
@@ -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)