diff options
| -rw-r--r-- | lisp/comint.el | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lisp/comint.el b/lisp/comint.el index 91cf20d550b..aa5e8c82530 100644 --- a/lisp/comint.el +++ b/lisp/comint.el | |||
| @@ -1192,7 +1192,9 @@ Similarly for Soar, Scheme, etc." | |||
| 1192 | (set-marker comint-last-input-end (point)) | 1192 | (set-marker comint-last-input-end (point)) |
| 1193 | (set-marker (process-mark proc) (point)) | 1193 | (set-marker (process-mark proc) (point)) |
| 1194 | (funcall comint-input-sender proc input) | 1194 | (funcall comint-input-sender proc input) |
| 1195 | (comint-output-filter proc ""))))) | 1195 | ;; This used to call comint-output-filter-functions, |
| 1196 | ;; but that scrolled the buffer in undesirable ways. | ||
| 1197 | (run-hook-with-args 'comint-output-filter-functions ""))))) | ||
| 1196 | 1198 | ||
| 1197 | ;; The purpose of using this filter for comint processes | 1199 | ;; The purpose of using this filter for comint processes |
| 1198 | ;; is to keep comint-last-input-end from moving forward | 1200 | ;; is to keep comint-last-input-end from moving forward |