aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefan Monnier2008-06-11 02:47:57 +0000
committerStefan Monnier2008-06-11 02:47:57 +0000
commitd3d31fad696c2ea42c39559c7845f8ec1f829b4c (patch)
treedc6a4cde9c60f4064426dd5dbc3b38f27dddf71f
parent3c5a7a3c3277d3e1515388b6913d2f89ac50f4bf (diff)
downloademacs-d3d31fad696c2ea42c39559c7845f8ec1f829b4c.tar.gz
emacs-d3d31fad696c2ea42c39559c7845f8ec1f829b4c.zip
(compilation-filter): Fix up last change.
-rw-r--r--lisp/ChangeLog2
-rw-r--r--lisp/progmodes/compile.el1
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 @@
12008-06-11 Stefan Monnier <monnier@iro.umontreal.ca> 12008-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