aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJim Blandy1993-05-03 03:38:36 +0000
committerJim Blandy1993-05-03 03:38:36 +0000
commit1a786d291b9ddc0feb3b43276b20c1c97eae4f01 (patch)
tree2814f9d2a3f5542bb0e1cfd26b905bc83bec5d46
parente084483dea79fba5c10662c953579f8aee4e1953 (diff)
downloademacs-1a786d291b9ddc0feb3b43276b20c1c97eae4f01.tar.gz
emacs-1a786d291b9ddc0feb3b43276b20c1c97eae4f01.zip
* mouse.el (mouse-buffer-menu): Don't right-justify the buffer
name; this doesn't look nice if we use a proportional font.
-rw-r--r--lisp/mouse.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/mouse.el b/lisp/mouse.el
index 0b3a1824f94..e8658c68e6c 100644
--- a/lisp/mouse.el
+++ b/lisp/mouse.el
@@ -198,7 +198,7 @@ and selects that window."
198 (setq head (cons 198 (setq head (cons
199 (cons 199 (cons
200 (format 200 (format
201 "%14s %s" 201 "%-14s %s"
202 (buffer-name elt) 202 (buffer-name elt)
203 (or (buffer-file-name elt) "")) 203 (or (buffer-file-name elt) ""))
204 elt) 204 elt)