diff options
author | Eli Zaretskii <eliz@gnu.org> | 2014-10-15 16:16:10 +0300 |
---|---|---|
committer | Eli Zaretskii <eliz@gnu.org> | 2014-10-15 16:16:10 +0300 |
commit | b8ec977659df3970a6c8afb7a5b79c9b61e08307 (patch) | |
tree | 58d317d79edc1406c8f50235062c86cb71ae18b5 /lisp/emacs-lisp | |
parent | 48af58622bd07f37124a7b35f903b00de119f4a8 (diff) | |
parent | 73d4c39e1519a5fec742686e3c81941113d41448 (diff) | |
download | emacs-b8ec977659df3970a6c8afb7a5b79c9b61e08307.tar.gz |
Merge from trunk.
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r-- | lisp/emacs-lisp/tabulated-list.el | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/tabulated-list.el b/lisp/emacs-lisp/tabulated-list.el index 3ee261aa06b..1e613c7fd4e 100644 --- a/lisp/emacs-lisp/tabulated-list.el +++ b/lisp/emacs-lisp/tabulated-list.el @@ -519,7 +519,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) |