Mercurial > emacs
changeset 50448:6ced6cabcc81
(ibuffer-insert-filter-group): Fix spazz.
author | John Paul Wallington <jpw@pobox.com> |
---|---|
date | Sat, 05 Apr 2003 01:03:23 +0000 |
parents | a5a6cd517d62 |
children | f85be9da34a2 |
files | lisp/ibuffer.el |
diffstat | 1 files changed, 4 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/ibuffer.el Fri Apr 04 22:02:35 2003 +0000 +++ b/lisp/ibuffer.el Sat Apr 05 01:03:23 2003 +0000 @@ -2067,9 +2067,11 @@ mouse-face highlight help-echo ,(let ((echo '(if tooltip-mode "mouse-1: toggle marks in this group\nmouse-2: hide/show this filtering group" - " mouse-1: toggle marks mouse-2: hide/show"))) + "mouse-1: toggle marks mouse-2: hide/show"))) (if (> (length filter-string) 0) - `(concat ,filter-string (and tooltip-mode "\n") ,echo) + `(concat ,filter-string + (if tooltip-mode "\n" " ") + ,echo) echo)))) (insert "\n") (when bmarklist