aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
Diffstat (limited to 'lisp')
-rw-r--r--lisp/term.el6
1 files changed, 6 insertions, 0 deletions
diff --git a/lisp/term.el b/lisp/term.el
index 562d9b0487c..f477bccbe2e 100644
--- a/lisp/term.el
+++ b/lisp/term.el
@@ -1101,6 +1101,12 @@ Entry to this mode runs the hooks on `term-mode-hook'."
1101 ;; Without the below setting, term-mode and ansi-term behave 1101 ;; Without the below setting, term-mode and ansi-term behave
1102 ;; sluggishly when the buffer includes a lot of whitespace 1102 ;; sluggishly when the buffer includes a lot of whitespace
1103 ;; characters. 1103 ;; characters.
1104 ;;
1105 ;; There's a larger problem here with supporting bidirectional text:
1106 ;; the application that writes to the terminal could have its own
1107 ;; ideas about displaying bidirectional text, and might not want us
1108 ;; reordering the text or deciding on base paragraph direction. One
1109 ;; such application is Emacs in TTY mode... FIXME.
1104 (setq bidi-paragraph-direction 'left-to-right) 1110 (setq bidi-paragraph-direction 'left-to-right)
1105 1111
1106 (easy-menu-add term-terminal-menu) 1112 (easy-menu-add term-terminal-menu)