aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJohn Paul Wallington2003-04-04 21:50:21 +0000
committerJohn Paul Wallington2003-04-04 21:50:21 +0000
commit0aa1b02e818a3f9a2d8f519455621e4e7a3aba9e (patch)
tree168a6d7823f5b52126536bd419b08a9e7a1839e1
parent1cd7affa21ba770e22958c41539d6d1933138b23 (diff)
downloademacs-0aa1b02e818a3f9a2d8f519455621e4e7a3aba9e.tar.gz
emacs-0aa1b02e818a3f9a2d8f519455621e4e7a3aba9e.zip
(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 @@
12003-04-04 John Paul Wallington <jpw@gnu.org>
2
3 * ibuffer.el (ibuffer-insert-filter-group): `help-echo' text
4 property dynamically respects `tooltip-mode'.
5 (define-ibuffer-column name): Likewise.
6
7 * ibuf-ext.el (ibuffer-format-filter-group-data): Don't append "\n".
8
12003-04-04 Masatake YAMATO <jet@gyve.org> 92003-04-04 Masatake YAMATO <jet@gyve.org>
2 10
3 * progmodes/etags.el (find-file-of-tag-noselect, find-file-of-tag): 11 * progmodes/etags.el (find-file-of-tag-noselect, find-file-of-tag):
@@ -179,6 +187,7 @@
179 * reveal.el (reveal-post-command): Better error handling. 187 * reveal.el (reveal-post-command): Better error handling.
180 188
1812003-03-31 Nick Roberts <nick@nick.uklinux.net> 1892003-03-31 Nick Roberts <nick@nick.uklinux.net>
190
182 * gdb-ui.el (gdb-inferior-io-mode): Remove Unix pathname for cat 191 * gdb-ui.el (gdb-inferior-io-mode): Remove Unix pathname for cat
183 so that it can run on NT also. 192 so that it can run on NT also.
184 193
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."
917(defun ibuffer-format-filter-group-data (filter) 917(defun ibuffer-format-filter-group-data (filter)
918 (if (equal filter "Default") 918 (if (equal filter "Default")
919 "" 919 ""
920 (concat "Filter: " (mapconcat #'ibuffer-format-qualifier 920 (concat "Filter:" (mapconcat #'ibuffer-format-qualifier
921 (cdr (assq filter ibuffer-filter-groups)) 921 (cdr (assq filter ibuffer-filter-groups))
922 " ") "\n"))) 922 " "))))
923 923
924(defun ibuffer-format-qualifier (qualifier) 924(defun ibuffer-format-qualifier (qualifier)
925 (if (eq (car-safe qualifier) 'not) 925 (if (eq (car-safe qualifier) 'not)