]> git.eshelyaron.com Git - emacs.git/commitdiff
(comint-output-filter): Run comint-output-filter-functions
authorRichard M. Stallman <rms@gnu.org>
Sat, 9 Nov 1996 09:21:20 +0000 (09:21 +0000)
committerRichard M. Stallman <rms@gnu.org>
Sat, 9 Nov 1996 09:21:20 +0000 (09:21 +0000)
directly, not via comint-output-filter.

lisp/comint.el

index 91cf20d550bcb94bc276e85c622bb40b070a5d1d..aa5e8c825308422bce9e661b0b635f69864caded 100644 (file)
@@ -1192,7 +1192,9 @@ Similarly for Soar, Scheme, etc."
          (set-marker comint-last-input-end (point))
          (set-marker (process-mark proc) (point))
          (funcall comint-input-sender proc input)
-         (comint-output-filter proc "")))))
+         ;; This used to call comint-output-filter-functions,
+         ;; but that scrolled the buffer in undesirable ways.
+         (run-hook-with-args 'comint-output-filter-functions "")))))
 
 ;; The purpose of using this filter for comint processes
 ;; is to keep comint-last-input-end from moving forward