Mercurial > emacs
comparison src/ChangeLog @ 110602:d4aacd8a2664
Fix typos in ChangeLogs.
author | Juanma Barranquero <lekktu@gmail.com> |
---|---|
date | Mon, 27 Sep 2010 12:25:04 +0200 |
parents | 0e84d4500f6b |
children | eff33de9a3ff |
comparison
equal
deleted
inserted
replaced
110601:1d759828bb3d | 110602:d4aacd8a2664 |
---|---|
37 | 37 |
38 * process.c (gpm_wait_mask, max_gpm_desc): Remove. | 38 * process.c (gpm_wait_mask, max_gpm_desc): Remove. |
39 (write_mask): New variable. | 39 (write_mask): New variable. |
40 (max_input_desc): Renamed from max_keyboard_desc. | 40 (max_input_desc): Renamed from max_keyboard_desc. |
41 (fd_callback_info): New variable. | 41 (fd_callback_info): New variable. |
42 (add_read_fd, delete_read_fd, add_write_fd, delete_write_fd): New | 42 (add_read_fd, delete_read_fd, add_write_fd, delete_write_fd): |
43 functions. | 43 New functions. |
44 (Fmake_network_process): FD_SET write_mask. | 44 (Fmake_network_process): FD_SET write_mask. |
45 (deactivate_process): FD_CLR write_mask. | 45 (deactivate_process): FD_CLR write_mask. |
46 (wait_reading_process_output): Connecting renamed to Writeok. | 46 (wait_reading_process_output): Connecting renamed to Writeok. |
47 check_connect removed. check_write is new. Remove references to | 47 check_connect removed. check_write is new. Remove references to gpm. |
48 gpm. Use Writeok/check_write unconditionally (i.e. no #ifdef | 48 Use Writeok/check_write unconditionally (i.e. no #ifdef |
49 NON_BLOCKING_CONNECT) instead of Connecting. | 49 NON_BLOCKING_CONNECT) instead of Connecting. |
50 Loop over file descriptors and call callbacks in fd_callback_info | 50 Loop over file descriptors and call callbacks in fd_callback_info |
51 if file descriptor is ready for I/O. | 51 if file descriptor is ready for I/O. |
52 (add_gpm_wait_descriptor): Just call add_keyboard_wait_descriptor. | 52 (add_gpm_wait_descriptor): Just call add_keyboard_wait_descriptor. |
53 (delete_gpm_wait_descriptor): Just call delete_keyboard_wait_descriptor. | 53 (delete_gpm_wait_descriptor): Just call delete_keyboard_wait_descriptor. |
54 (keyboard_bit_set): Use max_input_desc. | 54 (keyboard_bit_set): Use max_input_desc. |
55 (add_keyboard_wait_descriptor, delete_keyboard_wait_descriptor): Remove | 55 (add_keyboard_wait_descriptor, delete_keyboard_wait_descriptor): |
56 #ifdef subprocesses. Use max_input_desc. | 56 Remove #ifdef subprocesses. Use max_input_desc. |
57 (init_process): Initialize write_mask and fd_callback_info. | 57 (init_process): Initialize write_mask and fd_callback_info. |
58 | 58 |
59 * keyboard.c (readable_events, gobble_input): Remove DBUS code. | 59 * keyboard.c (readable_events, gobble_input): Remove DBUS code. |
60 | 60 |
61 * dbusbind.c: Include process.h. | 61 * dbusbind.c: Include process.h. |
62 (dbus_fd_cb, xd_find_watch_fd, xd_toggle_watch) | 62 (dbus_fd_cb, xd_find_watch_fd, xd_toggle_watch) |
63 (xd_read_message_1): New functions. | 63 (xd_read_message_1): New functions. |
64 (xd_add_watch, xd_remove_watch): Call xd_find_watch_fd. Handle | 64 (xd_add_watch, xd_remove_watch): Call xd_find_watch_fd. |
65 watch for both read and write. | 65 Handle watch for both read and write. |
66 (Fdbus_init_bus): Also register xd_toggle_watch. | 66 (Fdbus_init_bus): Also register xd_toggle_watch. |
67 (Fdbus_call_method_asynchronously, Fdbus_method_return_internal) | 67 (Fdbus_call_method_asynchronously, Fdbus_method_return_internal) |
68 (Fdbus_method_error_internal, Fdbus_send_signal): Remove call | 68 (Fdbus_method_error_internal, Fdbus_send_signal): Remove call |
69 to dbus_connection_flush. | 69 to dbus_connection_flush. |
70 (xd_read_message): Move most of the code to xd_read_message_1. | 70 (xd_read_message): Move most of the code to xd_read_message_1. |
71 Call xd_read_message_1 until status is COMPLETE. | 71 Call xd_read_message_1 until status is COMPLETE. |
72 | 72 |
73 2010-09-26 Dan Nicolaescu <dann@ics.uci.edu> | 73 2010-09-26 Dan Nicolaescu <dann@ics.uci.edu> |
74 | 74 |
75 * term.c: Do not include sys/ioctl.h, not needed. | 75 * term.c: Do not include sys/ioctl.h, not needed. |
76 (init_tty): Reorder code to reduce the number of #ifdefs. No code | 76 (init_tty): Reorder code to reduce the number of #ifdefs. |
77 changes. | 77 No code changes. |
78 | 78 |
79 2010-09-26 Teodor Zlatanov <tzz@lifelogs.com> | 79 2010-09-26 Teodor Zlatanov <tzz@lifelogs.com> |
80 | 80 |
81 * process.h: Set up GnuTLS support. | 81 * process.h: Set up GnuTLS support. |
82 | 82 |
2995 | 2995 |
2996 * xsmfns.c (SSDATA): New macro. | 2996 * xsmfns.c (SSDATA): New macro. |
2997 (smc_save_yourself_CB, x_session_initialize): Use SSDATA for strings | 2997 (smc_save_yourself_CB, x_session_initialize): Use SSDATA for strings |
2998 passed to strlen/strcpy/strcat. | 2998 passed to strlen/strcpy/strcat. |
2999 (create_client_leader_window): Surround with #ifndef USE_GTK. Cast | 2999 (create_client_leader_window): Surround with #ifndef USE_GTK. Cast |
3000 7:th arg to XChangeProperty to (unsigned char *) | 3000 7:th arg to XChangeProperty to (unsigned char *). |
3001 | 3001 |
3002 * xsettings.c (something_changedCB, parse_settings) | 3002 * xsettings.c (something_changedCB, parse_settings) |
3003 (apply_xft_settings): Reformat prototype. | 3003 (apply_xft_settings): Reformat prototype. |
3004 (something_changedCB, init_gconf): Remove unused variable i. | 3004 (something_changedCB, init_gconf): Remove unused variable i. |
3005 (read_settings): Remove unused variable long_len. | 3005 (read_settings): Remove unused variable long_len. |