diff options
| -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) |