From: Stefan Monnier Date: Thu, 20 Nov 2008 15:35:30 +0000 (+0000) Subject: (Buffer-menu-short-ellipsis): New constant. X-Git-Tag: emacs-pretest-23.0.90~1676 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=31e02fabc0e1c2e44fcf2f6bbf3a390ceece3e5a;p=emacs.git (Buffer-menu-short-ellipsis): New constant. (Buffer-menu-buffer+size): Use it, fix last change, and simplify. (list-buffers-noselect): Don't need to pad. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index c892c6f30b0..421c2a20680 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,9 @@ +2008-11-20 Stefan Monnier + + * buff-menu.el (Buffer-menu-short-ellipsis): New constant. + (Buffer-menu-buffer+size): Use it, fix last change, and simplify. + (list-buffers-noselect): Don't need to pad. + 2008-11-20 Toru TSUNEYOSHI * buff-menu.el (Buffer-menu-buffer+size, list-buffers-noselect): diff --git a/lisp/buff-menu.el b/lisp/buff-menu.el index 7e94b8f0ac2..b028f699bed 100644 --- a/lisp/buff-menu.el +++ b/lisp/buff-menu.el @@ -596,26 +596,24 @@ For more information, see the function `buffer-menu'." (interactive "P") (display-buffer (list-buffers-noselect files-only))) +(defconst Buffer-menu-short-ellipsis (if (char-displayable-p ?…) "…" ":")) + (defun Buffer-menu-buffer+size (name size &optional name-props size-props) - (if (> (+ (string-width name) (string-width size) 2) Buffer-menu-buffer+size-width) + (if (> (+ (string-width name) (string-width size) 2) + Buffer-menu-buffer+size-width) (setq name - (if (string-match "<[0-9]+>$" name) - (concat (truncate-string-to-width name - (- Buffer-menu-buffer+size-width - (max (string-width size) 3) - (string-width (match-string 0)) - 2) - 0 - ?\s) - ":" ; narrow ellipsis - (match-string 0 name)) - (concat (truncate-string-to-width name - (- Buffer-menu-buffer+size-width - (max (string-width size) 3) - 2) - 0 - ?\s) - ":"))) ; narrow ellipsis + (let ((tail + (if (string-match "<[0-9]+>$" name) + (match-string 0 name) + ""))) + (concat (truncate-string-to-width + name + (- Buffer-menu-buffer+size-width + (max (string-width size) 3) + (string-width tail) + 2)) + Buffer-menu-short-ellipsis + tail))) ;; Don't put properties on (buffer-name). (setq name (copy-sequence name))) (add-text-properties 0 (length name) name-props name) @@ -846,9 +844,7 @@ For more information, see the function `buffer-menu'." " " (if (> (string-width (nth 4 buffer)) Buffer-menu-mode-width) (truncate-string-to-width (nth 4 buffer) - Buffer-menu-mode-width - 0 - ?\s) + Buffer-menu-mode-width) (nth 4 buffer))) (when (nth 5 buffer) (indent-to (+ Buffer-menu-buffer-column Buffer-menu-buffer+size-width