aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristopher Schmidt2013-02-02 07:25:20 +0100
committerChristopher Schmidt2013-02-02 07:25:20 +0100
commita1876c5c7dc05bef18b057abc4eacf24315125fe (patch)
tree1089ac9db017d113604ff348e7305ffdc4c2c01c
parent35114711c0a05f203146b8de2389cc6c7491d523 (diff)
downloademacs-a1876c5c7dc05bef18b057abc4eacf24315125fe.tar.gz
emacs-a1876c5c7dc05bef18b057abc4eacf24315125fe.zip
* progmodes/compile.el (compilation-start-hook): Simplify docstring.
(Bug#13379)
-rw-r--r--lisp/ChangeLog1
-rw-r--r--lisp/progmodes/compile.el8
2 files changed, 3 insertions, 6 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 7c4db96657f..f3e0ab3fb05 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -2,6 +2,7 @@
2 2
3 * progmodes/compile.el (compilation-error-regexp-alist-alist): 3 * progmodes/compile.el (compilation-error-regexp-alist-alist):
4 Identify g++ template instantiation trace. (Bug#12287) 4 Identify g++ template instantiation trace. (Bug#12287)
5 (compilation-start-hook): Simplify docstring. (Bug#13379)
5 6
62013-02-02 Stefan Monnier <monnier@iro.umontreal.ca> 72013-02-02 Stefan Monnier <monnier@iro.umontreal.ca>
7 8
diff --git a/lisp/progmodes/compile.el b/lisp/progmodes/compile.el
index d4e3fd01f1a..240b1e41d4c 100644
--- a/lisp/progmodes/compile.el
+++ b/lisp/progmodes/compile.el
@@ -48,12 +48,8 @@
48 48
49;;;###autoload 49;;;###autoload
50(defcustom compilation-start-hook nil 50(defcustom compilation-start-hook nil
51 "List of hook functions run by `compilation-start' on the compilation process. 51 "Hook run after starting a new compilation process. The hook
52\(See `run-hook-with-args'). 52is run with one argument, the new process."
53If you use \"omake -P\" and do not want \\[save-buffers-kill-terminal] to ask whether you want
54the compilation to be killed, you can use this hook:
55 (add-hook 'compilation-start-hook
56 (lambda (process) (set-process-query-on-exit-flag process nil)) nil t)"
57 :type 'hook 53 :type 'hook
58 :group 'compilation) 54 :group 'compilation)
59 55