From: Christopher Schmidt Date: Sat, 2 Feb 2013 08:41:02 +0000 (+0100) Subject: * progmodes/compile.el (compilation-mode-hook) X-Git-Tag: emacs-24.3.90~173^2~7^2~161 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=85a83ea09dd2440187945ed4bb5f3f6fcebb9a71;p=emacs.git * progmodes/compile.el (compilation-mode-hook) (compilation-start-hook, compilation-window-height): Simplify docstrings. (Bug#13379) --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index f3e0ab3fb05..fdf12be0a1c 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -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 diff --git a/lisp/progmodes/compile.el b/lisp/progmodes/compile.el index 240b1e41d4c..d2a9617e28e 100644 --- a/lisp/progmodes/compile.el +++ b/lisp/progmodes/compile.el @@ -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)