mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2025-01-31 20:02:42 +00:00
* 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.
This commit is contained in:
parent
f9b434f8e8
commit
c428aaf093
@ -726,7 +726,7 @@ they are in Emacs core, GNU ELPA, or elsewhere."
|
|||||||
:group 'so-long)
|
:group 'so-long)
|
||||||
|
|
||||||
(defcustom so-long-variable-overrides
|
(defcustom so-long-variable-overrides
|
||||||
'((bidi-display-reordering . nil)
|
'((bidi-paragraph-direction . left-to-right)
|
||||||
(buffer-read-only . t)
|
(buffer-read-only . t)
|
||||||
(global-hl-line-mode . nil)
|
(global-hl-line-mode . nil)
|
||||||
(line-move-visual . t)
|
(line-move-visual . t)
|
||||||
@ -742,7 +742,9 @@ If `so-long-revert' is subsequently invoked, then the variables are restored
|
|||||||
to their original states."
|
to their original states."
|
||||||
:type '(alist :key-type (variable :tag "Variable")
|
:type '(alist :key-type (variable :tag "Variable")
|
||||||
:value-type (sexp :tag "Value"))
|
: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)
|
(buffer-read-only boolean)
|
||||||
(global-hl-line-mode boolean)
|
(global-hl-line-mode boolean)
|
||||||
(line-move-visual boolean)
|
(line-move-visual boolean)
|
||||||
|
Loading…
Reference in New Issue
Block a user