Location: lg@xxxxxxxxxxxxxx http://arch.xwem.org/2005/
Revision: xlib--main--2.2--patch-2
Archive: lg@xxxxxxxxxxxxxx
Creator: Zajcev Evgeny <lg@xxxxxxxx>
Date: Sat May 14 02:21:15 MSD 2005
Standard-date: 2005-05-13 22:21:15 GMT
Modified-files: lisp/xlib-xc.el
New-patches: lg@xxxxxxxxxxxxxx/xlib--main--2.2--patch-2
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--main/xlib--main--2.2/lg@xxxxxxxxxxxxxx/patch-log/patch-2
{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)
|