Location: steve@xxxxxxxxxxxxxx http://arch.eicq.org/2005/
Revision: xlib--steve--2.2--patch-4
Archive: steve@xxxxxxxxxxxxxx
Creator: Steve Youngs <steve@xxxxxxxx>
Date: Sat May 7 00:08:16 EST 2005
Standard-date: 2005-05-06 14:08:16 GMT
Modified-files: lisp/xlib-xc.el
New-patches: steve@xxxxxxxxxxxxxx/xlib--steve--2.2--patch-4
Summary: Exit (S)XEmacs without having to confirm closing the X connections
Keywords: enhancement, internal
* lisp/xlib-xc.el (X-Dpy-create-connection): Set the connection process
to kill without query. This is so you can exit (S)XEmacs without being
asked about running processes.
* added files
{arch}/xlib/xlib--steve/xlib--steve--2.2/steve@xxxxxxxxxxxxxx/patch-log/patch-4
* modified files
--- orig/lisp/xlib-xc.el
+++ mod/lisp/xlib-xc.el
@@ -249,6 +249,10 @@
dname
(+ 6000 dnum)))
(xdpy (make-X-Dpy :proc xcon :name (format "%s:%d" dname dnum))))
+
+ ;; Exit (S)XEmacs without being asked to confirm killing the X
+ ;; connection process
+ (process-kill-without-query xcon)
(set-process-filter xcon 'X-Dpy-filter)
(set-process-sentinel xcon 'X-Dpy-sentinel)
|