From: Lars Ingebrigtsen Date: Mon, 16 Aug 2021 12:49:19 +0000 (+0200) Subject: Fix cursor movement on the Linux console with certain characters X-Git-Tag: emacs-28.0.90~1481 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=a3b31302dd1b7c1ffd3486b35de06c957785b919;p=emacs.git Fix cursor movement on the Linux console with certain characters * lisp/term/linux.el (terminal-init-linux): Switch off auto-compositions, because they confuse cursor movement on the Linux console (bug#21363). --- diff --git a/lisp/term/linux.el b/lisp/term/linux.el index c6d84ab96c3..bc61a3a7cc3 100644 --- a/lisp/term/linux.el +++ b/lisp/term/linux.el @@ -12,6 +12,9 @@ ;; It can't really display underlines. (tty-no-underline) + ;; Compositions confuse cursor movement. + (global-auto-composition-mode -1) + (ignore-errors (when gpm-mouse-mode (require 't-mouse) (gpm-mouse-enable))) ;; Make Latin-1 input characters work, too.