From ae3316f0ae52bd4a58720c6165061d716ba6c65b Mon Sep 17 00:00:00 2001 From: Henrik Lissner Date: Sun, 8 Dec 2019 16:11:54 -0500 Subject: [PATCH] bidi-paragraph-direction = 'left-to-right A minor performance boost. --- core/core.el | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/core/core.el b/core/core.el index ad8256de3..b66bf2581 100644 --- a/core/core.el +++ b/core/core.el @@ -228,7 +228,8 @@ users).") ;; Disable bidirectional text rendering for a modest performance boost. Of ;; course, this renders Emacs unable to detect/display right-to-left languages ;; (sorry!), but for us left-to-right language speakers/writers, it's a boon. -(setq-default bidi-display-reordering 'left-to-right) +(setq-default bidi-display-reordering 'left-to-right + bidi-paragraph-direction 'left-to-right) ;; Reduce rendering/line scan work for Emacs by not rendering cursors or regions ;; in non-focused windows.