From: Eli Zaretskii Date: Tue, 27 Sep 2011 16:46:17 +0000 (+0300) Subject: Force left-to-right paragraphs in Org buffers. X-Git-Tag: emacs-pretest-24.0.91~263 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=aa97fd08e3b8d6a218b977ffba668f9cc63e0c17;p=emacs.git 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. --- diff --git a/lisp/org/ChangeLog b/lisp/org/ChangeLog index 1c320f20e51..9fbeb9f1882 100644 --- a/lisp/org/ChangeLog +++ b/lisp/org/ChangeLog @@ -1,3 +1,9 @@ +2011-09-27 Eli Zaretskii + + * 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 * org.el (org-toggle-pretty-entities): Fix typo in message. diff --git a/lisp/org/org.el b/lisp/org/org.el index 32ca5288d6e..da39aa189ba 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))