# HG changeset patch # User John Paul Wallington # Date 1049504603 0 # Node ID 6ced6cabcc81d7785ce3f9f9bb549ac37c645c93 # Parent a5a6cd517d62d37ce996a5f6f6b76b73f8d19827 (ibuffer-insert-filter-group): Fix spazz. diff -r a5a6cd517d62 -r 6ced6cabcc81 lisp/ibuffer.el --- 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