]> git.eshelyaron.com Git - emacs.git/commitdiff
* lisp/so-long.el (so-long-variable-overrides): Set bidi-inhibit-bpa
authorPhil Sainty <psainty@orcon.net.nz>
Fri, 29 Nov 2019 11:57:21 +0000 (00:57 +1300)
committerPhil Sainty <psainty@orcon.net.nz>
Fri, 29 Nov 2019 12:02:16 +0000 (01:02 +1300)
(Bug#38407)

lisp/so-long.el

index 33b7155d044a4bb8aa9df983aac48cec5c335c9d..49595a3fd91f1b1f3d5e827698f5a5fe2f5c8912 100644 (file)
@@ -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)