summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Paul Wallington <jpw@pobox.com>2003-04-04 21:50:21 +0000
committerJohn Paul Wallington <jpw@pobox.com>2003-04-04 21:50:21 +0000
commit0aa1b02e818a3f9a2d8f519455621e4e7a3aba9e (patch)
tree168a6d7823f5b52126536bd419b08a9e7a1839e1
parent1cd7affa21ba770e22958c41539d6d1933138b23 (diff)
downloademacs-0aa1b02e818a3f9a2d8f519455621e4e7a3aba9e.tar.gz
(ibuffer-format-filter-group-data): Don't append "\n".
-rw-r--r--lisp/ChangeLog9
-rw-r--r--lisp/ibuf-ext.el6
2 files changed, 12 insertions, 3 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 40621edea1c..e93cabad3d2 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,11 @@
+2003-04-04 John Paul Wallington <jpw@gnu.org>
+
+ * ibuffer.el (ibuffer-insert-filter-group): `help-echo' text
+ property dynamically respects `tooltip-mode'.
+ (define-ibuffer-column name): Likewise.
+
+ * ibuf-ext.el (ibuffer-format-filter-group-data): Don't append "\n".
+
2003-04-04 Masatake YAMATO <jet@gyve.org>
* progmodes/etags.el (find-file-of-tag-noselect, find-file-of-tag):
@@ -179,6 +187,7 @@
* reveal.el (reveal-post-command): Better error handling.
2003-03-31 Nick Roberts <nick@nick.uklinux.net>
+
* gdb-ui.el (gdb-inferior-io-mode): Remove Unix pathname for cat
so that it can run on NT also.
diff --git a/lisp/ibuf-ext.el b/lisp/ibuf-ext.el
index 526ad45f630..834ca9ff9ff 100644
--- a/lisp/ibuf-ext.el
+++ b/lisp/ibuf-ext.el
@@ -917,9 +917,9 @@ of replacing the current filters."
(defun ibuffer-format-filter-group-data (filter)
(if (equal filter "Default")
""
- (concat "Filter: " (mapconcat #'ibuffer-format-qualifier
- (cdr (assq filter ibuffer-filter-groups))
- " ") "\n")))
+ (concat "Filter:" (mapconcat #'ibuffer-format-qualifier
+ (cdr (assq filter ibuffer-filter-groups))
+ " "))))
(defun ibuffer-format-qualifier (qualifier)
(if (eq (car-safe qualifier) 'not)