aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/org
diff options
context:
space:
mode:
authorEli Zaretskii <[email protected]>2011-09-27 19:46:17 +0300
committerEli Zaretskii <[email protected]>2011-09-27 19:46:17 +0300
commitaa97fd08e3b8d6a218b977ffba668f9cc63e0c17 (patch)
treea2ecbf4c5fe1633f429d299896ce8bb895406a91 /lisp/org
parent502f9ebda07a494d37a9127bd396718f42c4c4d9 (diff)
Force left-to-right paragraphs in Org buffers.
lisp/org/org.el (org-mode): Force left-to-right paragraphs in Org buffers. For a related discussions, see https://lists.gnu.org/archive/html/emacs-devel/2011-09/msg00349.html.
Diffstat (limited to 'lisp/org')
-rw-r--r--lisp/org/ChangeLog6
-rw-r--r--lisp/org/org.el1
2 files changed, 7 insertions, 0 deletions
diff --git a/lisp/org/ChangeLog b/lisp/org/ChangeLog
index 1c320f20e5..9fbeb9f188 100644
--- a/lisp/org/ChangeLog
+++ b/lisp/org/ChangeLog
@@ -1,3 +1,9 @@
+2011-09-27 Eli Zaretskii <[email protected]>
+
+ * org.el (org-mode): Force left-to-right paragraphs in Org
+ buffers. For a related discussions, see
+ https://lists.gnu.org/archive/html/emacs-devel/2011-09/msg00349.html.
+
2011-09-17 Juanma Barranquero <[email protected]>
* org.el (org-toggle-pretty-entities): Fix typo in message.
diff --git a/lisp/org/org.el b/lisp/org/org.el
index 32ca5288d6..da39aa189b 100644
--- a/lisp/org/org.el
+++ b/lisp/org/org.el
@@ -4748,6 +4748,7 @@ The following commands are available:
(org-set-local 'line-move-ignore-invisible t))
(org-set-local 'outline-regexp org-outline-regexp)
(org-set-local 'outline-level 'org-outline-level)
+ (setq bidi-paragraph-direction 'left-to-right)
(when (and org-ellipsis
(fboundp 'set-display-table-slot) (boundp 'buffer-display-table)
(fboundp 'make-glyph-code))