diff options
author | Richard M. Stallman <rms@gnu.org> | 1997-05-01 21:35:31 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1997-05-01 21:35:31 +0000 |
commit | f64f240da427f8759273bc167ab184e5e7cc45ee (patch) | |
tree | f25c51baaa8dec5b134af54c02fc27cf9ef2ee2a /src/xselect.c | |
parent | 1b2b79fa82c5e82bd275b45f4b2a708d979f6661 (diff) | |
download | emacs-f64f240da427f8759273bc167ab184e5e7cc45ee.tar.gz |
(x_reply_selection_request): Fix previous change.
Diffstat (limited to 'src/xselect.c')
-rw-r--r-- | src/xselect.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/xselect.c b/src/xselect.c index 2a94e2a7cde..81cce31abad 100644 --- a/src/xselect.c +++ b/src/xselect.c @@ -529,7 +529,7 @@ x_reply_selection_request (event, format, data, size, type) /* #### XChangeProperty can generate BadAlloc, and we must handle it! */ BLOCK_INPUT; - x_catch_errors (display, count); + count = x_catch_errors (display); /* Store the data on the requested property. If the selection is large, only store the first N bytes of it. |