Location: lg@xxxxxxxxxxxxxx http://arch.xwem.org/2005/
Revision: xlib--main--2.1--patch-2
Archive: lg@xxxxxxxxxxxxxx
Creator: Zajcev Evgeny <lg@xxxxxxxx>
Date: Sat Jan 8 04:51:45 MSK 2005
Standard-date: 2005-01-08 01:51:45 GMT
Modified-files: lisp/xlib-xr.el
New-patches: lg@xxxxxxxxxxxxxx/xlib--main--2.1--patch-2
Summary: inhibit C-g while parsing message
Keywords: quit
* lisp/xlib-xr.el (X-Dpy-parse-message): [fix] inhibit C-g while parsing,
so pressing C-g will not desync xlib.
* added files
{arch}/xlib/xlib--main/xlib--main--2.1/lg@xxxxxxxxxxxxxx/patch-log/patch-2
* modified files
--- orig/lisp/xlib-xr.el
+++ mod/lisp/xlib-xr.el
@@ -855,7 +855,8 @@
(X-Dpy-p xdpy 'X-Dpy-parse-message)
- (let ((rlist nil)
+ (let ((inhibit-quit t) ; so C-g will not desync
+ (rlist nil)
(reverse-me t)
(length-1 (if (boundp 'length-1) length-1 nil))
(length-2 (if (boundp 'length-2) length-2 nil))
|