diff options
| author | John Paul Wallington | 2003-04-05 01:03:23 +0000 |
|---|---|---|
| committer | John Paul Wallington | 2003-04-05 01:03:23 +0000 |
| commit | ce3a4c83413e8df2d2163dbae43c49367826b213 (patch) | |
| tree | 58a3cf197f53820e08b209bd7c94864f623a6d08 | |
| parent | da2c1d6bd1c362b15da4577478ffcdf829107146 (diff) | |
| download | emacs-ce3a4c83413e8df2d2163dbae43c49367826b213.tar.gz emacs-ce3a4c83413e8df2d2163dbae43c49367826b213.zip | |
(ibuffer-insert-filter-group): Fix spazz.
| -rw-r--r-- | lisp/ibuffer.el | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/lisp/ibuffer.el b/lisp/ibuffer.el index c6209e1a07f..a60abda6c5a 100644 --- a/lisp/ibuffer.el +++ b/lisp/ibuffer.el | |||
| @@ -2067,9 +2067,11 @@ If optional arg SILENT is non-nil, do not display progress messages." | |||
| 2067 | mouse-face highlight | 2067 | mouse-face highlight |
| 2068 | help-echo ,(let ((echo '(if tooltip-mode | 2068 | help-echo ,(let ((echo '(if tooltip-mode |
| 2069 | "mouse-1: toggle marks in this group\nmouse-2: hide/show this filtering group" | 2069 | "mouse-1: toggle marks in this group\nmouse-2: hide/show this filtering group" |
| 2070 | " mouse-1: toggle marks mouse-2: hide/show"))) | 2070 | "mouse-1: toggle marks mouse-2: hide/show"))) |
| 2071 | (if (> (length filter-string) 0) | 2071 | (if (> (length filter-string) 0) |
| 2072 | `(concat ,filter-string (and tooltip-mode "\n") ,echo) | 2072 | `(concat ,filter-string |
| 2073 | (if tooltip-mode "\n" " ") | ||
| 2074 | ,echo) | ||
| 2073 | echo)))) | 2075 | echo)))) |
| 2074 | (insert "\n") | 2076 | (insert "\n") |
| 2075 | (when bmarklist | 2077 | (when bmarklist |