emacs-bug-tracker
[Top][All Lists]
Advanced

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

[debbugs-tracker] bug#13379: closed (24.3.50; compilation-start-hook: mi


From: GNU bug Tracking System
Subject: [debbugs-tracker] bug#13379: closed (24.3.50; compilation-start-hook: misleading docstring)
Date: Sat, 02 Feb 2013 06:34:01 +0000

Your message dated Sat,  2 Feb 2013 06:32:04 +0000 (GMT)
with message-id <address@hidden>
and subject line Re: bug#13379: 24.3.50; compilation-start-hook: misleading 
docstring
has caused the debbugs.gnu.org bug report #13379,
regarding 24.3.50; compilation-start-hook: misleading docstring
to be marked as done.

(If you believe you have received this mail in error, please contact
address@hidden)


-- 
13379: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=13379
GNU Bug Tracking System
Contact address@hidden with problems
--- Begin Message --- Subject: 24.3.50; compilation-start-hook: misleading docstring Date: Mon, 7 Jan 2013 20:12:51 +0000 (GMT)
Severity: minor

The docstring of compilation-start-hook is misleading.

The reference to run-hook-with-args is superfluous, so is the reference
to omake.  I do not think set-process-query-on-exit-flag should be used
in compilation-start-hook - compilation-always-kill is the way to go, or
it should be explained why the lambda is added buffer locally and where
this form should be evaled.

        Christopher



--- End Message ---
--- Begin Message --- Subject: Re: bug#13379: 24.3.50; compilation-start-hook: misleading docstring Date: Sat, 2 Feb 2013 06:32:04 +0000 (GMT)
Christopher Schmidt <address@hidden> writes:
> The docstring of compilation-start-hook is misleading.
>
> The reference to run-hook-with-args is superfluous, so is the
> reference to omake.  I do not think set-process-query-on-exit-flag
> should be used in compilation-start-hook - compilation-always-kill is
> the way to go, or it should be explained why the lambda is added
> buffer locally and where this form should be evaled.

I went ahead and committed this in r111661.
--- lisp/ChangeLog
+++ lisp/ChangeLog
@@ -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>
 
--- lisp/progmodes/compile.el
+++ lisp/progmodes/compile.el
@@ -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)
If there is any doubt whatsoever regarding what I have just done, please
revert immediately and reopen the bug.  Thank you!

        Christopher

--- End Message ---

reply via email to

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