From: Luc Teirlinck Date: Thu, 19 May 2005 16:53:26 +0000 (+0000) Subject: (compilation-finish-function): Fix defvar. X-Git-Tag: ttn-vms-21-2-B4~139 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=620d3304e2edeb5a26aa9d07a171bd4358ef4257;p=emacs.git (compilation-finish-function): Fix defvar. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 0d49f580ecd..bad5a550509 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,7 @@ +2005-05-19 Luc Teirlinck + + * progmodes/compile.el (compilation-finish-function): Fix defvar. + 2005-05-19 Richard M. Stallman * progmodes/make-mode.el (makefile-mode): Use run-mode-hooks. @@ -19,7 +23,7 @@ * progmodes/compile.el (compilation-finish-function): Mark obsolete. (compilation-set-window): Don't call left-fringe-p; do it directly. - + 2005-05-19 Jay Belanger * 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) \"*\")'.") (defvar compilation-finish-function nil "Function to call when a compilation process finishes. It is called with two arguments: the compilation buffer, and a string -describing how the process finished. +describing how the process finished.") (make-obsolete-variable 'compilation-finish-function "Use `compilation-finish-functions', but it works a little differently."