1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2025-01-28 19:42:02 +00:00

* progmodes/compile.el (compilation-mode-hook)

(compilation-start-hook, compilation-window-height): Simplify
docstrings.  (Bug#13379)
This commit is contained in:
Christopher Schmidt 2013-02-02 09:41:02 +01:00
parent a1876c5c7d
commit 85a83ea09d
2 changed files with 7 additions and 5 deletions

View File

@ -2,7 +2,8 @@
* progmodes/compile.el (compilation-error-regexp-alist-alist):
Identify g++ template instantiation trace. (Bug#12287)
(compilation-start-hook): Simplify docstring. (Bug#13379)
(compilation-mode-hook, compilation-start-hook)
(compilation-window-height): Simplify docstrings. (Bug#13379)
2013-02-02 Stefan Monnier <monnier@iro.umontreal.ca>

View File

@ -42,20 +42,21 @@
;;;###autoload
(defcustom compilation-mode-hook nil
"List of hook functions run by `compilation-mode' (see `run-mode-hooks')."
"List of hook functions run by `compilation-mode'."
:type 'hook
:group 'compilation)
;;;###autoload
(defcustom compilation-start-hook nil
"Hook run after starting a new compilation process. The hook
is run with one argument, the new process."
"Hook run after starting a new compilation process.
The hook is run with one argument, the new process."
:type 'hook
:group 'compilation)
;;;###autoload
(defcustom compilation-window-height nil
"Number of lines in a compilation window. If nil, use Emacs default."
"Number of lines in a compilation window.
If nil, use Emacs default."
:type '(choice (const :tag "Default" nil)
integer)
:group 'compilation)