From: Chong Yidong Date: Sun, 4 Jan 2009 08:30:58 +0000 (+0000) Subject: (visual-line-mode-map): Remove M-[ and M-] bindings. X-Git-Tag: emacs-pretest-23.0.90~710 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=b316b2b864721a69325648fcac13289e27f961be;p=emacs.git (visual-line-mode-map): Remove M-[ and M-] bindings. --- 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)