]> git.eshelyaron.com Git - emacs.git/commitdiff
* progmodes/compile.el (compilation-start-hook): Simplify docstring.
authorChristopher Schmidt <christopher@ch.ristopher.com>
Sat, 2 Feb 2013 06:25:20 +0000 (07:25 +0100)
committerChristopher Schmidt <christopher@ch.ristopher.com>
Sat, 2 Feb 2013 06:25:20 +0000 (07:25 +0100)
(Bug#13379)

lisp/ChangeLog
lisp/progmodes/compile.el

index 7c4db96657fbae3a62f73d61e89e15d3b8474f7c..f3e0ab3fb057013a4ae7de7797f11ed91ea8e673 100644 (file)
@@ -2,6 +2,7 @@
 
        * progmodes/compile.el (compilation-error-regexp-alist-alist):
        Identify g++ template instantiation trace.  (Bug#12287)
+       (compilation-start-hook): Simplify docstring.  (Bug#13379)
 
 2013-02-02  Stefan Monnier  <monnier@iro.umontreal.ca>
 
index d4e3fd01f1ae1030e98b3dbbd035b4d103638613..240b1e41d4c196c45004444c8c595d6bc4044f54 100644 (file)
 
 ;;;###autoload
 (defcustom compilation-start-hook nil
-  "List of hook functions run by `compilation-start' on the compilation process.
-\(See `run-hook-with-args').
-If you use \"omake -P\" and do not want \\[save-buffers-kill-terminal] to ask whether you want
-the compilation to be killed, you can use this hook:
-  (add-hook 'compilation-start-hook
-    (lambda (process) (set-process-query-on-exit-flag process nil)) nil t)"
+  "Hook run after starting a new compilation process.  The hook
+is run with one argument, the new process."
   :type 'hook
   :group 'compilation)