aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/org
diff options
context:
space:
mode:
authorJoakim Verona2011-09-29 00:01:51 +0200
committerJoakim Verona2011-09-29 00:01:51 +0200
commit7a982f9eef56799ebe5857f7b8b3e636c6715090 (patch)
tree8014baca5849ccb340771eadf87b89d4cde00a64 /lisp/org
parentf0f8db4c04d0d3bdfa645cd79a9b7a915587a7c5 (diff)
parent88d9610cae8004cf9856be84d76c389e7fc3b14b (diff)
downloademacs-7a982f9eef56799ebe5857f7b8b3e636c6715090.tar.gz
emacs-7a982f9eef56799ebe5857f7b8b3e636c6715090.zip
upstream
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 1c320f20e51..9fbeb9f1882 100644
--- a/lisp/org/ChangeLog
+++ b/lisp/org/ChangeLog
@@ -1,3 +1,9 @@
12011-09-27 Eli Zaretskii <eliz@gnu.org>
2
3 * org.el (org-mode): Force left-to-right paragraphs in Org
4 buffers. For a related discussions, see
5 https://lists.gnu.org/archive/html/emacs-devel/2011-09/msg00349.html.
6
12011-09-17 Juanma Barranquero <lekktu@gmail.com> 72011-09-17 Juanma Barranquero <lekktu@gmail.com>
2 8
3 * org.el (org-toggle-pretty-entities): Fix typo in message. 9 * 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:
4748 (org-set-local 'line-move-ignore-invisible t)) 4748 (org-set-local 'line-move-ignore-invisible t))
4749 (org-set-local 'outline-regexp org-outline-regexp) 4749 (org-set-local 'outline-regexp org-outline-regexp)
4750 (org-set-local 'outline-level 'org-outline-level) 4750 (org-set-local 'outline-level 'org-outline-level)
4751 (setq bidi-paragraph-direction 'left-to-right)
4751 (when (and org-ellipsis 4752 (when (and org-ellipsis
4752 (fboundp 'set-display-table-slot) (boundp 'buffer-display-table) 4753 (fboundp 'set-display-table-slot) (boundp 'buffer-display-table)
4753 (fboundp 'make-glyph-code)) 4754 (fboundp 'make-glyph-code))