diff options
| author | Jim Blandy | 1993-05-03 03:38:36 +0000 |
|---|---|---|
| committer | Jim Blandy | 1993-05-03 03:38:36 +0000 |
| commit | 1a786d291b9ddc0feb3b43276b20c1c97eae4f01 (patch) | |
| tree | 2814f9d2a3f5542bb0e1cfd26b905bc83bec5d46 | |
| parent | e084483dea79fba5c10662c953579f8aee4e1953 (diff) | |
| download | emacs-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.el | 2 |
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) |