emacs-diffs
[Top][All Lists]
Advanced

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

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


From: Christopher Schmidt
Subject: [Emacs-diffs] /srv/bzr/emacs/trunk r111661: * progmodes/compile.el (compilation-start-hook): Simplify docstring.
Date: Sat, 02 Feb 2013 07:25:20 +0100
User-agent: Bazaar (2.5.0)

------------------------------------------------------------
revno: 111661
fixes bug: http://debbugs.gnu.org/13379
committer: Christopher Schmidt <address@hidden>
branch nick: trunk
timestamp: Sat 2013-02-02 07:25:20 +0100
message:
  * progmodes/compile.el (compilation-start-hook): Simplify docstring.
  (Bug#13379)
modified:
  lisp/ChangeLog
  lisp/progmodes/compile.el
=== modified file 'lisp/ChangeLog'
--- a/lisp/ChangeLog    2013-02-02 06:15:05 +0000
+++ b/lisp/ChangeLog    2013-02-02 06:25:20 +0000
@@ -2,6 +2,7 @@
 
        * progmodes/compile.el (compilation-error-regexp-alist-alist):
        Identify g++ template instantiation trace.  (Bug#12287)
+       (compilation-start-hook): Simplify docstring.  (Bug#13379)
 
 2013-02-02  Stefan Monnier  <address@hidden>
 

=== modified file 'lisp/progmodes/compile.el'
--- a/lisp/progmodes/compile.el 2013-02-02 06:15:05 +0000
+++ b/lisp/progmodes/compile.el 2013-02-02 06:25:20 +0000
@@ -48,12 +48,8 @@
 
 ;;;###autoload
 (defcustom compilation-start-hook nil
-  "List of hook functions run by `compilation-start' on the compilation 
process.
-\(See `run-hook-with-args').
-If you use \"omake -P\" and do not want \\[save-buffers-kill-terminal] to ask 
whether you want
-the compilation to be killed, you can use this hook:
-  (add-hook 'compilation-start-hook
-    (lambda (process) (set-process-query-on-exit-flag process nil)) nil t)"
+  "Hook run after starting a new compilation process.  The hook
+is run with one argument, the new process."
   :type 'hook
   :group 'compilation)
 


reply via email to

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