aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJuanma Barranquero2007-10-11 11:57:36 +0000
committerJuanma Barranquero2007-10-11 11:57:36 +0000
commitb8044b69d3f7637170cb5f57213a2aedc983ee7a (patch)
treef37eb3d87b6e15ba09325f1ebd2a7770f9d978bc
parent31c4b81d8177b82875a65c10899ffa292b7af119 (diff)
downloademacs-b8044b69d3f7637170cb5f57213a2aedc983ee7a.tar.gz
emacs-b8044b69d3f7637170cb5f57213a2aedc983ee7a.zip
(follow-stop-intercept-process-output):
Use `follow-call-process-filter' rather than `process-filter'.
-rw-r--r--lisp/ChangeLog9
-rw-r--r--lisp/follow.el2
2 files changed, 8 insertions, 3 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 37f99104f8e..21ae5b78d62 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,8 @@
12007-10-11 Juanma Barranquero <lekktu@gmail.com>
2
3 * follow.el (follow-stop-intercept-process-output):
4 Use `follow-call-process-filter' rather than `process-filter'.
5
12007-10-11 Tom Tromey <tromey@redhat.com> 62007-10-11 Tom Tromey <tromey@redhat.com>
2 7
3 * progmodes/gdb-ui.el (gdb-info-stack-custom): Ensure current 8 * progmodes/gdb-ui.el (gdb-info-stack-custom): Ensure current
@@ -17,8 +22,8 @@
17 * ps-print.el: Fix the usage of :foreground and :background face 22 * ps-print.el: Fix the usage of :foreground and :background face
18 attributes. Reported by Nikolaj Schumacher <n_schumacher@web.de>. 23 attributes. Reported by Nikolaj Schumacher <n_schumacher@web.de>.
19 (ps-print-version): New version 6.7.6. 24 (ps-print-version): New version 6.7.6.
20 (ps-face-attributes, ps-face-attribute-list, ps-face-background): Fix 25 (ps-face-attributes, ps-face-attribute-list, ps-face-background):
21 code. 26 Fix code.
22 (ps-face-foreground-color-p, ps-face-background-color-p) 27 (ps-face-foreground-color-p, ps-face-background-color-p)
23 (ps-face-color-p): New inline funs. 28 (ps-face-color-p): New inline funs.
24 29
diff --git a/lisp/follow.el b/lisp/follow.el
index 91713aa6e42..6400c799794 100644
--- a/lisp/follow.el
+++ b/lisp/follow.el
@@ -1900,7 +1900,7 @@ report this using the `report-emacs-bug' function."
1900 (follow-tidy-process-filter-alist) 1900 (follow-tidy-process-filter-alist)
1901 (let ((list (process-list))) 1901 (let ((list (process-list)))
1902 (while list 1902 (while list
1903 (if (eq (process-filter (car list)) 'follow-generic-filter) 1903 (if (eq (follow-call-process-filter (car list)) 'follow-generic-filter)
1904 (progn 1904 (progn
1905 (follow-call-set-process-filter 1905 (follow-call-set-process-filter
1906 (car list) 1906 (car list)