From 85a83ea09dd2440187945ed4bb5f3f6fcebb9a71 Mon Sep 17 00:00:00 2001 From: Christopher Schmidt Date: Sat, 2 Feb 2013 09:41:02 +0100 Subject: [PATCH] * progmodes/compile.el (compilation-mode-hook) (compilation-start-hook, compilation-window-height): Simplify docstrings. (Bug#13379) --- lisp/ChangeLog | 3 ++- lisp/progmodes/compile.el | 9 +++++---- 2 files changed, 7 insertions(+), 5 deletions(-) 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) -- 2.39.5