emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] master f71dbb3 1/3: Default bidi paragraph direction to ni


From: Lars Ingebrigtsen
Subject: [Emacs-diffs] master f71dbb3 1/3: Default bidi paragraph direction to nil
Date: Tue, 01 Mar 2016 00:27:46 +0000

branch: master
commit f71dbb30eeb4b9885ae1c9c580f65c956008d0cf
Author: Lars Ingebrigtsen <address@hidden>
Commit: Lars Ingebrigtsen <address@hidden>

    Default bidi paragraph direction to nil
    
    * lisp/net/eww.el (eww-display-html): Default bidi rendering
    to nil, so that possibly more Arabic web pages render
    correctly (bug#22786).
    (eww-setup-buffer): Ditto.
---
 lisp/net/eww.el |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/lisp/net/eww.el b/lisp/net/eww.el
index 91a1775..3c3736a 100644
--- a/lisp/net/eww.el
+++ b/lisp/net/eww.el
@@ -418,7 +418,7 @@ Currently this means either text/html or 
application/xhtml+xml."
        (source (and (null document)
                     (buffer-substring (point) (point-max)))))
     (with-current-buffer buffer
-      (setq bidi-paragraph-direction 'left-to-right)
+      (setq bidi-paragraph-direction nil)
       (plist-put eww-data :source source)
       (plist-put eww-data :dom document)
       (let ((inhibit-read-only t)
@@ -580,7 +580,7 @@ Currently this means either text/html or 
application/xhtml+xml."
   (let ((inhibit-read-only t))
     (remove-overlays)
     (erase-buffer))
-  (setq bidi-paragraph-direction 'left-to-right)
+  (setq bidi-paragraph-direction nil)
   (unless (eq major-mode 'eww-mode)
     (eww-mode)))
 



reply via email to

[Prev in Thread] Current Thread [Next in Thread]