diff options
| -rw-r--r-- | lisp/ChangeLog | 6 | ||||
| -rw-r--r-- | lisp/progmodes/compile.el | 2 |
2 files changed, 6 insertions, 2 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 0d49f580ecd..bad5a550509 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2005-05-19 Luc Teirlinck <teirllm@auburn.edu> | ||
| 2 | |||
| 3 | * progmodes/compile.el (compilation-finish-function): Fix defvar. | ||
| 4 | |||
| 1 | 2005-05-19 Richard M. Stallman <rms@gnu.org> | 5 | 2005-05-19 Richard M. Stallman <rms@gnu.org> |
| 2 | 6 | ||
| 3 | * progmodes/make-mode.el (makefile-mode): Use run-mode-hooks. | 7 | * progmodes/make-mode.el (makefile-mode): Use run-mode-hooks. |
| @@ -19,7 +23,7 @@ | |||
| 19 | 23 | ||
| 20 | * progmodes/compile.el (compilation-finish-function): Mark obsolete. | 24 | * progmodes/compile.el (compilation-finish-function): Mark obsolete. |
| 21 | (compilation-set-window): Don't call left-fringe-p; do it directly. | 25 | (compilation-set-window): Don't call left-fringe-p; do it directly. |
| 22 | 26 | ||
| 23 | 2005-05-19 Jay Belanger <belanger@truman.edu> | 27 | 2005-05-19 Jay Belanger <belanger@truman.edu> |
| 24 | 28 | ||
| 25 | * calc/calc-graph.el (calc-graph-format-data): Make sure | 29 | * calc/calc-graph.el (calc-graph-format-data): Make sure |
diff --git a/lisp/progmodes/compile.el b/lisp/progmodes/compile.el index 67feb970cc2..ad43228a100 100644 --- a/lisp/progmodes/compile.el +++ b/lisp/progmodes/compile.el | |||
| @@ -117,7 +117,7 @@ nil means compute the name with `(concat \"*\" (downcase major-mode) \"*\")'.") | |||
| 117 | (defvar compilation-finish-function nil | 117 | (defvar compilation-finish-function nil |
| 118 | "Function to call when a compilation process finishes. | 118 | "Function to call when a compilation process finishes. |
| 119 | It is called with two arguments: the compilation buffer, and a string | 119 | It is called with two arguments: the compilation buffer, and a string |
| 120 | describing how the process finished. | 120 | describing how the process finished.") |
| 121 | 121 | ||
| 122 | (make-obsolete-variable 'compilation-finish-function | 122 | (make-obsolete-variable 'compilation-finish-function |
| 123 | "Use `compilation-finish-functions', but it works a little differently." | 123 | "Use `compilation-finish-functions', but it works a little differently." |