summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEli Zaretskii <eliz@gnu.org>2014-10-14 22:29:47 +0300
committerEli Zaretskii <eliz@gnu.org>2014-10-14 22:29:47 +0300
commit1d4795e86695a436ef8bcd065caeb448ea442a26 (patch)
tree846240eac8014c5bfc47055e41000913eb5d695a
parent3e19f95997c14bd6cfd09518bc848206ee3fd9f8 (diff)
downloademacs-1d4795e86695a436ef8bcd065caeb448ea442a26.tar.gz
Fix display of R2L entries in tabulated-list-mode.
lisp/emacs-lisp/tabulated-list.el (tabulated-list-mode): Force bidi-paragraph-direction to 'left-to-right'. This fixes buffer-menu display when the first buffer happens to start with R2L letter.
-rw-r--r--lisp/ChangeLog7
-rw-r--r--lisp/emacs-lisp/tabulated-list.el5
2 files changed, 11 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 77ab12faaf9..6b99ae2f22f 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,10 @@
+2014-10-14 Eli Zaretskii <eliz@gnu.org>
+
+ * emacs-lisp/tabulated-list.el (tabulated-list-mode): Force
+ bidi-paragraph-direction to 'left-to-right'. This fixes
+ buffer-menu display when the first buffer happens to start with
+ R2L letter.
+
2014-10-13 Glenn Morris <rgm@gnu.org>
* emacs-lisp/authors.el (authors-aliases, authors-fixed-case)
diff --git a/lisp/emacs-lisp/tabulated-list.el b/lisp/emacs-lisp/tabulated-list.el
index d0d71ddb935..86701068c4e 100644
--- a/lisp/emacs-lisp/tabulated-list.el
+++ b/lisp/emacs-lisp/tabulated-list.el
@@ -518,7 +518,10 @@ as the ewoc pretty-printer."
(setq-local buffer-read-only t)
(setq-local buffer-undo-list t)
(setq-local revert-buffer-function #'tabulated-list-revert)
- (setq-local glyphless-char-display tabulated-list-glyphless-char-display))
+ (setq-local glyphless-char-display tabulated-list-glyphless-char-display)
+ ;; Avoid messing up the entries' display just because the first
+ ;; column of the first entry happens to begin with a R2L letter.
+ (setq bidi-paragraph-direction 'left-to-right))
(put 'tabulated-list-mode 'mode-class 'special)