]> git.eshelyaron.com Git - emacs.git/commitdiff
* progmodes/compile.el (compilation-mode-hook)
authorChristopher Schmidt <christopher@ch.ristopher.com>
Sat, 2 Feb 2013 08:41:02 +0000 (09:41 +0100)
committerChristopher Schmidt <christopher@ch.ristopher.com>
Sat, 2 Feb 2013 08:41:02 +0000 (09:41 +0100)
(compilation-start-hook, compilation-window-height): Simplify
docstrings.  (Bug#13379)

lisp/ChangeLog
lisp/progmodes/compile.el

index f3e0ab3fb057013a4ae7de7797f11ed91ea8e673..fdf12be0a1c6753f3132790e5ae18bad60a3ffb1 100644 (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>
 
index 240b1e41d4c196c45004444c8c595d6bc4044f54..d2a9617e28e704cf43559eea52949241ddde8a68 100644 (file)
 
 ;;;###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)