mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2025-01-19 18:13:55 +00:00
Fix typo in tabulated-list-print-entry
This commit is contained in:
parent
368f40905f
commit
37f1c9309e
@ -1,3 +1,8 @@
|
||||
2011-04-10 Leo Liu <sdl.web@gmail.com>
|
||||
|
||||
* emacs-lisp/tabulated-list.el (tabulated-list-print-entry): Fix
|
||||
typo.
|
||||
|
||||
2011-04-09 Chong Yidong <cyd@stupidchicken.com>
|
||||
|
||||
* image-mode.el (image-toggle-display-image): Signal an error if
|
||||
|
@ -271,7 +271,7 @@ of column descriptors."
|
||||
;; Truncate labels if necessary.
|
||||
(and (> width 6)
|
||||
(> (length label) width)
|
||||
(setq label (concat (substring desc 0 (- width 3))
|
||||
(setq label (concat (substring label 0 (- width 3))
|
||||
"...")))
|
||||
(if (stringp desc)
|
||||
(insert (propertize label 'help-echo help-echo))
|
||||
|
Loading…
Reference in New Issue
Block a user