Location: steve@xxxxxxxxxxxxxx http://arch.eicq.org/2005/
Revision: xwem--steve--2.2--patch-3
Archive: steve@xxxxxxxxxxxxxx
Creator: Steve Youngs <steve@xxxxxxxx>
Date: Sat May 7 00:10:36 EST 2005
Standard-date: 2005-05-06 14:10:36 GMT
Modified-files: lisp/xwem-launcher.el
New-patches: steve@xxxxxxxxxxxxxx/xwem--steve--2.2--patch-3
Summary: Exit (S)XEmacs without having to confirm killing client processes
Keywords: enhancement, internal
* lisp/xwem-launcher.el (xwem-execute-program): Set the process to be
killed without query.
* added files
{arch}/xwem/xwem--steve/xwem--steve--2.2/steve@xxxxxxxxxxxxxx/patch-log/patch-3
* modified files
--- orig/lisp/xwem-launcher.el
+++ mod/lisp/xwem-launcher.el
@@ -297,6 +297,7 @@
(setq proc (get-buffer-process
(comint-exec buffer-name job-name prg nil args)))
+ (process-kill-without-query proc)
(comint-mode)
;; COND because the proc may have died before the G-B-P is called.
(cond (proc (set-process-sentinel proc 'xwem-program-sentinel)
|