diff options
| author | Lars Ingebrigtsen | 2015-12-27 20:35:05 +0100 |
|---|---|---|
| committer | Lars Ingebrigtsen | 2015-12-27 20:35:23 +0100 |
| commit | 03dbfb948c13dd7c9f24fae63e6ef482393c1e8e (patch) | |
| tree | 5a7a22c19efa9da910cb7a2b46613223aa0a0584 | |
| parent | 504982765cc563d96a0b773f4cf183ceacaf5861 (diff) | |
| download | emacs-03dbfb948c13dd7c9f24fae63e6ef482393c1e8e.tar.gz emacs-03dbfb948c13dd7c9f24fae63e6ef482393c1e8e.zip | |
(eww-setup-buffer): Restore left-to-right defaults
* eww.el (eww-setup-buffer): Restore left-to-right defaults.
Backport:
(cherry picked from commit 96c874b96b617c124d500a94de761a61f2a08685)
| -rw-r--r-- | lisp/net/eww.el | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lisp/net/eww.el b/lisp/net/eww.el index 033529d0616..5755a942ebe 100644 --- a/lisp/net/eww.el +++ b/lisp/net/eww.el | |||
| @@ -561,6 +561,7 @@ Currently this means either text/html or application/xhtml+xml." | |||
| 561 | (let ((inhibit-read-only t)) | 561 | (let ((inhibit-read-only t)) |
| 562 | (remove-overlays) | 562 | (remove-overlays) |
| 563 | (erase-buffer)) | 563 | (erase-buffer)) |
| 564 | (setq bidi-paragraph-direction 'left-to-right) | ||
| 564 | (unless (eq major-mode 'eww-mode) | 565 | (unless (eq major-mode 'eww-mode) |
| 565 | (eww-mode))) | 566 | (eww-mode))) |
| 566 | 567 | ||