diff options
| author | Phil Sainty | 2019-07-13 23:20:40 +1200 |
|---|---|---|
| committer | Phil Sainty | 2019-07-13 23:56:19 +1200 |
| commit | c428aaf0937a2c1939217e71fa5302d1d6f192f4 (patch) | |
| tree | 4678cc8f34b8655b97ac3681a84c96c062a0128b | |
| parent | f9b434f8e8e61a2e842aa16f1a7875ca7df5f0ed (diff) | |
| download | emacs-c428aaf0937a2c1939217e71fa5302d1d6f192f4.tar.gz emacs-c428aaf0937a2c1939217e71fa5302d1d6f192f4.zip | |
* lisp/so-long.el (so-long-variable-overrides): Use correct bidi option
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.
| -rw-r--r-- | lisp/so-long.el | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/lisp/so-long.el b/lisp/so-long.el index e5220fc5024..0f86bc70813 100644 --- a/lisp/so-long.el +++ b/lisp/so-long.el | |||
| @@ -726,7 +726,7 @@ they are in Emacs core, GNU ELPA, or elsewhere." | |||
| 726 | :group 'so-long) | 726 | :group 'so-long) |
| 727 | 727 | ||
| 728 | (defcustom so-long-variable-overrides | 728 | (defcustom so-long-variable-overrides |
| 729 | '((bidi-display-reordering . nil) | 729 | '((bidi-paragraph-direction . left-to-right) |
| 730 | (buffer-read-only . t) | 730 | (buffer-read-only . t) |
| 731 | (global-hl-line-mode . nil) | 731 | (global-hl-line-mode . nil) |
| 732 | (line-move-visual . t) | 732 | (line-move-visual . t) |
| @@ -742,7 +742,9 @@ If `so-long-revert' is subsequently invoked, then the variables are restored | |||
| 742 | to their original states." | 742 | to their original states." |
| 743 | :type '(alist :key-type (variable :tag "Variable") | 743 | :type '(alist :key-type (variable :tag "Variable") |
| 744 | :value-type (sexp :tag "Value")) | 744 | :value-type (sexp :tag "Value")) |
| 745 | :options '((bidi-display-reordering boolean) | 745 | :options '((bidi-paragraph-direction (choice (const left-to-right) |
| 746 | (const right-to-left) | ||
| 747 | (const nil))) | ||
| 746 | (buffer-read-only boolean) | 748 | (buffer-read-only boolean) |
| 747 | (global-hl-line-mode boolean) | 749 | (global-hl-line-mode boolean) |
| 748 | (line-move-visual boolean) | 750 | (line-move-visual boolean) |