[gnus git] branch master updated: n0-17-479-gc5085d5 =1= gnus-sum.el (gnus-summary-mode): Force paragraph direction to be left-to-right.
Katsumi Yamaoka <[email protected]>
| Newsgroups | gmane.emacs.gnus.cvs |
|---|---|
| Message-ID | <[email protected]> |
via c5085d53b9c7ba1434e3b9a55ca5a443e519853d (commit)
from def7ad4f0848c69b96943bef632ea73644a80a80 (commit)
- Log -----------------------------------------------------------------
commit c5085d53b9c7ba1434e3b9a55ca5a443e519853d
Author: Katsumi Yamaoka <[email protected]>
Date: Thu Jan 26 10:37:55 2012 +0000
gnus-sum.el (gnus-summary-mode): Force paragraph direction to be left-to-right.
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index e1c6289..f8b5fc0 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,8 @@
+2012-01-26 Katsumi Yamaoka <[email protected]>
+
+ * gnus-sum.el (gnus-summary-mode): Force paragraph direction to be
+ left-to-right.
+
2012-01-26 Lars Ingebrigtsen <[email protected]>
* nnimap.el (nnir-search-thread): Autoload to avoid a compilation
diff --git a/lisp/gnus-sum.el b/lisp/gnus-sum.el
index 9b7098c..26bd5b0 100644
--- a/lisp/gnus-sum.el
+++ b/lisp/gnus-sum.el
@@ -3060,6 +3060,8 @@ When FORCE, rebuild the tool bar."
(defvar bookmark-make-record-function)
+(defvar bidi-paragraph-direction)
+
(defun gnus-summary-mode (&optional group)
"Major mode for reading articles.
@@ -3098,6 +3100,8 @@ The following commands are available:
(setq buffer-read-only t ;Disable modification
show-trailing-whitespace nil)
(setq truncate-lines t)
+ ;; Force paragraph direction to be left-to-right.
+ (setq bidi-paragraph-direction 'left-to-right)
(add-to-invisibility-spec '(gnus-sum . t))
(gnus-summary-set-display-table)
(gnus-set-default-directory)
-----------------------------------------------------------------------
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we listed those
revisions in full, above.
Summary of changes:
lisp/ChangeLog | 5 +++++
lisp/gnus-sum.el | 4 ++++
2 files changed, 9 insertions(+), 0 deletions(-)
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "Gnus Project".
The branch, master has been updated
hooks/post-receive
--
Gnus Project