1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-12-14 09:39:42 +00:00

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.
This commit is contained in:
Eli Zaretskii 2011-09-27 19:46:17 +03:00
parent 502f9ebda0
commit aa97fd08e3
2 changed files with 7 additions and 0 deletions

View File

@ -1,3 +1,9 @@
2011-09-27 Eli Zaretskii <eliz@gnu.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.
2011-09-17 Juanma Barranquero <lekktu@gmail.com>
* org.el (org-toggle-pretty-entities): Fix typo in message.

View File

@ -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))