Merge from emacs-24; up to 2014-07-27T09:41:59Z!ttn@gnu.org

This commit is contained in:
Glenn Morris 2014-10-14 19:42:58 -07:00
commit 924a09e916
4 changed files with 41 additions and 22 deletions
lisp/emacs-lisp

View file

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