diff options
| author | Jan Djärv | 2005-02-07 20:00:31 +0000 |
|---|---|---|
| committer | Jan Djärv | 2005-02-07 20:00:31 +0000 |
| commit | fc34503b5669539d585e4f8627a1fea2b3c5e320 (patch) | |
| tree | d4361b0c81d361b1fcb1e777f55881b4375a4137 /src | |
| parent | fede04ef9f8e5625d353b38ea067706e446ea1a5 (diff) | |
| download | emacs-fc34503b5669539d585e4f8627a1fea2b3c5e320.tar.gz emacs-fc34503b5669539d585e4f8627a1fea2b3c5e320.zip | |
* xfns.c (Fx_change_window_property): Use long array when format is 32.
(Fx_window_property): If format is 32 and long is bigger than 32 bits,
convert long array returned from XGetWindowProperty to an int array.
* xselect.c (x_reply_selection_request): Pass long array to
XChangeProperty so that 64 bit longs are handeled correctly.
(x_get_window_property): If format is 32 and long is bigger than 32
bits convert data from XGetWindowProperty from long array to int array.
(lisp_data_to_selection_data): When the input is a vector and the
format is 32, allocate a long array even if long is bigger than 32 bits.
(x_fill_property_data): Use char, short and long as the man page
for XChangeProperty specifies. This way the data returned is OK for
both 32 and 64 bit machines.
(x_handle_dnd_message): Calculate size correctly even for 64 bit
machines.
(Fx_send_client_event): Undo change from 2005-02-05,
x_fill_property_data now handles that case.
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 2f42beb74c3..1d37ec13ff7 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,5 +1,23 @@ | |||
| 1 | 2005-02-07 Jan Dj,Ad(Brv <jan.h.d@swipnet.se> | 1 | 2005-02-07 Jan Dj,Ad(Brv <jan.h.d@swipnet.se> |
| 2 | 2 | ||
| 3 | * xfns.c (Fx_change_window_property): Use long array when format is 32. | ||
| 4 | (Fx_window_property): If format is 32 and long is bigger than 32 bits, | ||
| 5 | convert long array returned from XGetWindowProperty to an int array. | ||
| 6 | |||
| 7 | * xselect.c (x_reply_selection_request): Pass long array to | ||
| 8 | XChangeProperty so that 64 bit longs are handeled correctly. | ||
| 9 | (x_get_window_property): If format is 32 and long is bigger than 32 | ||
| 10 | bits convert data from XGetWindowProperty from long array to int array. | ||
| 11 | (lisp_data_to_selection_data): When the input is a vector and the | ||
| 12 | format is 32, allocate a long array even if long is bigger than 32 bits. | ||
| 13 | (x_fill_property_data): Use char, short and long as the man page | ||
| 14 | for XChangeProperty specifies. This way the data returned is OK for | ||
| 15 | both 32 and 64 bit machines. | ||
| 16 | (x_handle_dnd_message): Calculate size correctly even for 64 bit | ||
| 17 | machines. | ||
| 18 | (Fx_send_client_event): Undo change from 2005-02-05, | ||
| 19 | x_fill_property_data now handles that case. | ||
| 20 | |||
| 3 | * xfns.c (Fx_backspace_delete_keys_p): Added comment about the | 21 | * xfns.c (Fx_backspace_delete_keys_p): Added comment about the |
| 4 | reason for the approach in the code. | 22 | reason for the approach in the code. |
| 5 | 23 | ||