diff options
| -rw-r--r-- | lisp/ChangeLog | 1 | ||||
| -rw-r--r-- | lisp/progmodes/compile.el | 8 |
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 | ||
| 6 | 2013-02-02 Stefan Monnier <monnier@iro.umontreal.ca> | 7 | 2013-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'). | 52 | is run with one argument, the new process." |
| 53 | If you use \"omake -P\" and do not want \\[save-buffers-kill-terminal] to ask whether you want | ||
| 54 | the 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 | ||