From: Andreas Schwab Date: Mon, 26 May 2008 12:03:03 +0000 (+0000) Subject: (x_reply_selection_request): Properly handle format == X-Git-Tag: emacs-pretest-23.0.90~5290 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=5a9c35e5009f2cee18f4baa57736f604d215f7a9;p=emacs.git (x_reply_selection_request): Properly handle format == 32. Always send multiples of format size. --- diff --git a/src/ChangeLog b/src/ChangeLog index b6180e5a224..0cb744d5b62 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,5 +1,8 @@ 2008-05-26 Andreas Schwab + * xselect.c (x_reply_selection_request): Properly handle format == + 32. Always send multiples of format size. + * xterm.c (x_set_frame_alpha): Fix type mismatch. 2008-05-26 Jason Rumney diff --git a/src/xselect.c b/src/xselect.c index 0d09f138d45..dd5c1dcc6ba 100644 --- a/src/xselect.c +++ b/src/xselect.c @@ -808,7 +808,7 @@ x_reply_selection_request (event, format, data, size, type) { int i = ((bytes_remaining < max_bytes) ? bytes_remaining - : max_bytes); + : max_bytes) / format_bytes; BLOCK_INPUT; @@ -816,15 +816,18 @@ x_reply_selection_request (event, format, data, size, type) = expect_property_change (display, window, reply.property, PropertyDelete); - TRACE1 ("Sending increment of %d bytes", i); + TRACE1 ("Sending increment of %d elements", i); TRACE1 ("Set %s to increment data", XGetAtomName (display, reply.property)); /* Append the next chunk of data to the property. */ XChangeProperty (display, window, reply.property, type, format, - PropModeAppend, data, i / format_bytes); - bytes_remaining -= i; - data += i; + PropModeAppend, data, i); + bytes_remaining -= i * format_bytes; + if (format == 32) + data += i * sizeof (long); + else + data += i * format_bytes; XFlush (display); had_errors = x_had_errors_p (display); UNBLOCK_INPUT;