diff options
author | Chong Yidong <cyd@stupidchicken.com> | 2011-08-18 11:53:29 -0400 |
---|---|---|
committer | Chong Yidong <cyd@stupidchicken.com> | 2011-08-18 11:53:29 -0400 |
commit | f635daa1e056a564d13b4ef1ea8d1a4ff5b7401c (patch) | |
tree | 6b6f721809174e63545eccd2ff502ff67356c9fa /lisp/emacs-lisp/tabulated-list.el | |
parent | 156bffbe26748a0e60ec7125da4b960a0b6b455f (diff) | |
download | emacs-f635daa1e056a564d13b4ef1ea8d1a4ff5b7401c.tar.gz emacs-f635daa1e056a564d13b4ef1ea8d1a4ff5b7401c.tar.bz2 emacs-f635daa1e056a564d13b4ef1ea8d1a4ff5b7401c.zip |
Add L and R categories to standard category table, and use them.
* lisp/international/characters.el: Add L and R categories.
* lisp/subr.el (bidi-string-mark-left-to-right): Rename from
string-mark-left-to-right. Use category search.
* lisp/buff-menu.el (Buffer-menu-buffer+size): Callers changed.
Diffstat (limited to 'lisp/emacs-lisp/tabulated-list.el')
-rw-r--r-- | lisp/emacs-lisp/tabulated-list.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/tabulated-list.el b/lisp/emacs-lisp/tabulated-list.el index 9b485b58608..75c9a01323d 100644 --- a/lisp/emacs-lisp/tabulated-list.el +++ b/lisp/emacs-lisp/tabulated-list.el @@ -283,7 +283,7 @@ of column descriptors." (> (length label) width) (setq label (concat (substring label 0 (- width 3)) "..."))) - (setq label (string-mark-left-to-right label)) + (setq label (bidi-string-mark-left-to-right label)) (if (stringp desc) (insert (propertize label 'help-echo help-echo)) (apply 'insert-text-button label (cdr desc))) |