]> git.eshelyaron.com Git - emacs.git/commitdiff
* lisp/so-long.el (so-long-variable-overrides): Use correct bidi option
authorPhil Sainty <psainty@orcon.net.nz>
Sat, 13 Jul 2019 11:20:40 +0000 (23:20 +1200)
committerPhil Sainty <psainty@orcon.net.nz>
Sat, 13 Jul 2019 11:56:19 +0000 (23:56 +1200)
Set 'bidi-paragraph-direction' to 'left-to-right', rather than setting
'bidi-display-reordering' to nil, as the latter is only intended for
use when debugging the display code.

lisp/so-long.el

index e5220fc5024e9c8035f9e4dd0cd704c6f1a6d548..0f86bc70813160415347744a3ff1112e07618f28 100644 (file)
@@ -726,7 +726,7 @@ they are in Emacs core, GNU ELPA, or elsewhere."
   :group 'so-long)
 
 (defcustom so-long-variable-overrides
-  '((bidi-display-reordering . nil)
+  '((bidi-paragraph-direction . left-to-right)
     (buffer-read-only . t)
     (global-hl-line-mode . nil)
     (line-move-visual . t)
@@ -742,7 +742,9 @@ If `so-long-revert' is subsequently invoked, then the variables are restored
 to their original states."
   :type '(alist :key-type (variable :tag "Variable")
                 :value-type (sexp :tag "Value"))
-  :options '((bidi-display-reordering boolean)
+  :options '((bidi-paragraph-direction (choice (const left-to-right)
+                                               (const right-to-left)
+                                               (const nil)))
              (buffer-read-only boolean)
              (global-hl-line-mode boolean)
              (line-move-visual boolean)