diff options
author | Jason Rumney <jasonr@gnu.org> | 2007-12-06 17:58:08 +0000 |
---|---|---|
committer | Jason Rumney <jasonr@gnu.org> | 2007-12-06 17:58:08 +0000 |
commit | fc1f472bc498ac1e75d4b07a0ed23b53738e7f15 (patch) | |
tree | 6b9e2637b44256406b6c146bd9703dc16447a6c9 | |
parent | 142ff4de257fb67733273deafcbf0b798bfacdf0 (diff) | |
download | emacs-fc1f472bc498ac1e75d4b07a0ed23b53738e7f15.tar.gz emacs-fc1f472bc498ac1e75d4b07a0ed23b53738e7f15.tar.bz2 emacs-fc1f472bc498ac1e75d4b07a0ed23b53738e7f15.zip |
(mouse-buffer-menu-alist): Keep buffer names left aligned.
-rw-r--r-- | lisp/mouse.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/mouse.el b/lisp/mouse.el index e35bea81748..d01bddfab73 100644 --- a/lisp/mouse.el +++ b/lisp/mouse.el @@ -1914,7 +1914,7 @@ and selects that window." (cons (cons (format - (format "%%%ds %%s%%s %%s" maxlen) + (format "%%-%ds %%s%%s %%s" maxlen) (buffer-name elt) (if (buffer-modified-p elt) "*" " ") (save-excursion |