diff options
author | Alp Aker <aker@pitt.edu> | 2011-05-28 16:08:05 -0400 |
---|---|---|
committer | Chong Yidong <cyd@stupidchicken.com> | 2011-05-28 16:08:05 -0400 |
commit | 4ac619f07bc6d7560a04f5aa505c6ef084975d93 (patch) | |
tree | c064b3db2f820440e05fef50f263da76f15673e5 /lisp/buff-menu.el | |
parent | b4d52accc51a3caff8d6452ea7ab08fe2ce8eaae (diff) | |
download | emacs-4ac619f07bc6d7560a04f5aa505c6ef084975d93.tar.gz |
Additional minor fix to (Bug#8539).
* lisp/buff-menu.el (Buffer-menu-buffer+size): Use Buffer-menu-buffer-column.
Diffstat (limited to 'lisp/buff-menu.el')
-rw-r--r-- | lisp/buff-menu.el | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lisp/buff-menu.el b/lisp/buff-menu.el index 6da9d908305..95f309e33b9 100644 --- a/lisp/buff-menu.el +++ b/lisp/buff-menu.el @@ -688,7 +688,9 @@ For more information, see the function `buffer-menu'." (concat name (propertize (make-string (- name+space-width (string-width name)) ?\s) - 'display `(space :align-to ,(+ 4 name+space-width))) + 'display `(space :align-to + ,(+ Buffer-menu-buffer-column + name+space-width))) size))) (defun Buffer-menu-sort (column) |