summaryrefslogtreecommitdiff
path: root/lisp/so-long.el
diff options
context:
space:
mode:
authorPhil Sainty <psainty@orcon.net.nz>2019-11-30 00:57:21 +1300
committerPhil Sainty <psainty@orcon.net.nz>2019-11-30 01:02:16 +1300
commit17f9151f4ab22db97bd2a9d46dff8eb0752480c0 (patch)
tree4258d48106e948d1e5a3a69ca02de7f5560a3170 /lisp/so-long.el
parentbaa9ea73953396d93d0455f8ad9ae924d349a6eb (diff)
downloademacs-17f9151f4ab22db97bd2a9d46dff8eb0752480c0.tar.gz
* lisp/so-long.el (so-long-variable-overrides): Set bidi-inhibit-bpa
(Bug#38407)
Diffstat (limited to 'lisp/so-long.el')
-rw-r--r--lisp/so-long.el6
1 files changed, 4 insertions, 2 deletions
diff --git a/lisp/so-long.el b/lisp/so-long.el
index 33b7155d044..49595a3fd91 100644
--- a/lisp/so-long.el
+++ b/lisp/so-long.el
@@ -764,7 +764,8 @@ they are in Emacs core, GNU ELPA, or elsewhere."
:package-version '(so-long . "1.0"))
(defcustom so-long-variable-overrides
- '((bidi-paragraph-direction . left-to-right)
+ '((bidi-inhibit-bpa . t)
+ (bidi-paragraph-direction . left-to-right)
(buffer-read-only . t)
(global-hl-line-mode . nil)
(line-move-visual . t)
@@ -785,7 +786,8 @@ extremely long line, as otherwise the full length of the line may need to be
scanned to find the next position."
:type '(alist :key-type (variable :tag "Variable")
:value-type (sexp :tag "Value"))
- :options '((bidi-paragraph-direction (choice (const left-to-right)
+ :options '((bidi-inhibit-bpa boolean)
+ (bidi-paragraph-direction (choice (const left-to-right)
(const right-to-left)
(const nil)))
(buffer-read-only boolean)