diff options
author | Richard M. Stallman <rms@gnu.org> | 2001-11-17 22:30:16 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 2001-11-17 22:30:16 +0000 |
commit | 75547194d378932a1f0edb28c6bb078ec73cfb45 (patch) | |
tree | 3e0298519dcd1efee423eae7e10c532b0b9910a2 /lisp | |
parent | e02e6f75023e94cf8d07bfbc08f801ce0ecb3ad7 (diff) | |
download | emacs-75547194d378932a1f0edb28c6bb078ec73cfb45.tar.gz |
(menu-bar-update-buffers-1): Don't pad the buffer name.
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/menu-bar.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/menu-bar.el b/lisp/menu-bar.el index 01efd3b6d68..c0454fdb776 100644 --- a/lisp/menu-bar.el +++ b/lisp/menu-bar.el @@ -1016,7 +1016,8 @@ key (or menu-item)")) (defun menu-bar-update-buffers-1 (elt) (cons (format - (format "%%%ds %%s%%s %%s" menu-bar-update-buffers-maxbuf) + ;; (format "%%%ds %%s%%s %%s" menu-bar-update-buffers-maxbuf) + "%s %s%s -- %s" (cdr elt) (if (buffer-modified-p (car elt)) "*" " ") |