diff options
| -rw-r--r-- | 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 91a17755244..3c3736ac376 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." | |||
| 418 | (source (and (null document) | 418 | (source (and (null document) |
| 419 | (buffer-substring (point) (point-max))))) | 419 | (buffer-substring (point) (point-max))))) |
| 420 | (with-current-buffer buffer | 420 | (with-current-buffer buffer |
| 421 | (setq bidi-paragraph-direction 'left-to-right) | 421 | (setq bidi-paragraph-direction nil) |
| 422 | (plist-put eww-data :source source) | 422 | (plist-put eww-data :source source) |
| 423 | (plist-put eww-data :dom document) | 423 | (plist-put eww-data :dom document) |
| 424 | (let ((inhibit-read-only t) | 424 | (let ((inhibit-read-only t) |
| @@ -580,7 +580,7 @@ Currently this means either text/html or application/xhtml+xml." | |||
| 580 | (let ((inhibit-read-only t)) | 580 | (let ((inhibit-read-only t)) |
| 581 | (remove-overlays) | 581 | (remove-overlays) |
| 582 | (erase-buffer)) | 582 | (erase-buffer)) |
| 583 | (setq bidi-paragraph-direction 'left-to-right) | 583 | (setq bidi-paragraph-direction nil) |
| 584 | (unless (eq major-mode 'eww-mode) | 584 | (unless (eq major-mode 'eww-mode) |
| 585 | (eww-mode))) | 585 | (eww-mode))) |
| 586 | 586 | ||