diff options
| author | Stefan Monnier | 2008-06-11 02:47:57 +0000 |
|---|---|---|
| committer | Stefan Monnier | 2008-06-11 02:47:57 +0000 |
| commit | d3d31fad696c2ea42c39559c7845f8ec1f829b4c (patch) | |
| tree | dc6a4cde9c60f4064426dd5dbc3b38f27dddf71f | |
| parent | 3c5a7a3c3277d3e1515388b6913d2f89ac50f4bf (diff) | |
| download | emacs-d3d31fad696c2ea42c39559c7845f8ec1f829b4c.tar.gz emacs-d3d31fad696c2ea42c39559c7845f8ec1f829b4c.zip | |
(compilation-filter): Fix up last change.
| -rw-r--r-- | lisp/ChangeLog | 2 | ||||
| -rw-r--r-- | lisp/progmodes/compile.el | 1 |
2 files changed, 3 insertions, 0 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 390f9025daa..826675914dd 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,5 +1,7 @@ | |||
| 1 | 2008-06-11 Stefan Monnier <monnier@iro.umontreal.ca> | 1 | 2008-06-11 Stefan Monnier <monnier@iro.umontreal.ca> |
| 2 | 2 | ||
| 3 | * progmodes/compile.el (compilation-filter): Fix up last change. | ||
| 4 | |||
| 3 | * term/linux.el (terminal-init-linux): Use gpm-mouse-enable. | 5 | * term/linux.el (terminal-init-linux): Use gpm-mouse-enable. |
| 4 | 6 | ||
| 5 | * t-mouse.el (gpm-mouse-enable, gpm-mouse-disable): New functions. | 7 | * t-mouse.el (gpm-mouse-enable, gpm-mouse-disable): New functions. |
diff --git a/lisp/progmodes/compile.el b/lisp/progmodes/compile.el index 0c8bb8473be..07e5600d373 100644 --- a/lisp/progmodes/compile.el +++ b/lisp/progmodes/compile.el | |||
| @@ -1675,6 +1675,7 @@ Just inserts the text, and runs `compilation-filter-hook'." | |||
| 1675 | ;; point at `process-mark' scroll along with the output, but we | 1675 | ;; point at `process-mark' scroll along with the output, but we |
| 1676 | ;; now use window-point-insertion-type instead. | 1676 | ;; now use window-point-insertion-type instead. |
| 1677 | (insert string) | 1677 | (insert string) |
| 1678 | (set-marker (process-mark proc) (point)) | ||
| 1678 | (run-hooks 'compilation-filter-hook)))))) | 1679 | (run-hooks 'compilation-filter-hook)))))) |
| 1679 | 1680 | ||
| 1680 | ;;; test if a buffer is a compilation buffer, assuming we're in the buffer | 1681 | ;;; test if a buffer is a compilation buffer, assuming we're in the buffer |