emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] /srv/bzr/emacs/trunk r111662: * progmodes/compile.el (comp


From: Christopher Schmidt
Subject: [Emacs-diffs] /srv/bzr/emacs/trunk r111662: * progmodes/compile.el (compilation-mode-hook)
Date: Sat, 02 Feb 2013 09:41:02 +0100
User-agent: Bazaar (2.5.0)

------------------------------------------------------------
revno: 111662
fixes bug: http://debbugs.gnu.org/13379
committer: Christopher Schmidt <address@hidden>
branch nick: trunk
timestamp: Sat 2013-02-02 09:41:02 +0100
message:
  * progmodes/compile.el (compilation-mode-hook)
  (compilation-start-hook, compilation-window-height): Simplify
  docstrings.  (Bug#13379)
modified:
  lisp/ChangeLog
  lisp/progmodes/compile.el
=== modified file 'lisp/ChangeLog'
--- a/lisp/ChangeLog    2013-02-02 06:25:20 +0000
+++ b/lisp/ChangeLog    2013-02-02 08:41:02 +0000
@@ -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  <address@hidden>
 

=== modified file 'lisp/progmodes/compile.el'
--- a/lisp/progmodes/compile.el 2013-02-02 06:25:20 +0000
+++ b/lisp/progmodes/compile.el 2013-02-02 08:41:02 +0000
@@ -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)


reply via email to

[Prev in Thread] Current Thread [Next in Thread]