diff options
Diffstat (limited to 'src/ChangeLog')
| -rw-r--r-- | src/ChangeLog | 56 |
1 files changed, 56 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 8b1c429e406..6ff25edac50 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,59 @@ | |||
| 1 | 2013-02-15 Paul Eggert <eggert@cs.ucla.edu> | ||
| 2 | |||
| 3 | * process.c (h_errno) [!HAVE_H_ERRNO]: Remove unused decl. | ||
| 4 | |||
| 5 | 2013-02-15 Eli Zaretskii <eliz@gnu.org> | ||
| 6 | |||
| 7 | * keyboard.c (read_char): Fix calculation of auto-save time out | ||
| 8 | when auto-save-timeout is less than 4. (Bug#13720) | ||
| 9 | |||
| 10 | * w32proc.c (new_child): Free up to 2 slots of dead processes at a | ||
| 11 | time. Improve diagnostics in DebPrint. (Bug#13546) | ||
| 12 | |||
| 13 | * w32.c (sys_socket, sys_bind, sys_connect, sys_gethostname) | ||
| 14 | (sys_gethostbyname, sys_getservbyname, sys_getpeername) | ||
| 15 | (sys_shutdown, sys_setsockopt, sys_listen, sys_getsockname) | ||
| 16 | (sys_accept, sys_recvfrom, sys_sendto, fcntl): In case of failure, | ||
| 17 | make sure errno is set to an appropriate value. (Bug#13546) | ||
| 18 | (socket_to_fd): Add assertion against indexing fd_info[] with a | ||
| 19 | value that is out of bounds. | ||
| 20 | (sys_accept): If fd is negative, do not set up the child_process | ||
| 21 | structure for reading. | ||
| 22 | |||
| 23 | 2013-02-15 Dmitry Antipov <dmantipov@yandex.ru> | ||
| 24 | |||
| 25 | * composite.c (fill_gstring_header): Remove useless prototype. | ||
| 26 | Break long line. | ||
| 27 | * lisp.h (message_dolog, compile_pattern): Adjust prototype. | ||
| 28 | * print.c (PRINTDECLARE, print_object): | ||
| 29 | * search.c (compile_pattern, fast_looking_at, search_buffer): | ||
| 30 | (simple_search, boyer_moore, Freplace_match): | ||
| 31 | * xdisp.c (c_string_pos, number_of_chars, message_dolog): | ||
| 32 | (get_overlay_arrow_glyph_row, display_mode_element): | ||
| 33 | (decode_mode_spec_coding, message3): | ||
| 34 | * xfaces.c (face_at_string_position): Use bool for booleans. | ||
| 35 | Adjust comments. | ||
| 36 | |||
| 37 | 2013-02-15 Paul Eggert <eggert@cs.ucla.edu> | ||
| 38 | |||
| 39 | Fix AIX port (Bug#13650). | ||
| 40 | * lisp.h (XPNTR) [!USE_LSB_TAG && DATA_SEG_BITS]: | ||
| 41 | Fix bug introduced in 2012-07-27 change. DATA_SEG_BITS, if set, | ||
| 42 | was #undeffed earlier, so it cannot be used as a macro here. | ||
| 43 | Use the constant and not the macro. | ||
| 44 | |||
| 45 | 2013-02-15 Eli Zaretskii <eliz@gnu.org> | ||
| 46 | |||
| 47 | * w32proc.c (new_child): If no vacant slots are found in | ||
| 48 | child_procs[], make another pass looking for slots whose process | ||
| 49 | has exited or died. (Bug#13546) | ||
| 50 | |||
| 51 | * w32.c (sys_pipe): When failing due to file descriptors above | ||
| 52 | MAXDESC, set errno to EMFILE. | ||
| 53 | (_sys_read_ahead): Update cp->status when failing to read serial | ||
| 54 | communications input, so that the status doesn't stay at | ||
| 55 | STATUS_READ_IN_PROGRESS. (Bug#13546) | ||
| 56 | |||
| 1 | 2013-02-14 Jan Djärv <jan.h.d@swipnet.se> | 57 | 2013-02-14 Jan Djärv <jan.h.d@swipnet.se> |
| 2 | 58 | ||
| 3 | * gtkutil.c (tb_size_cb): New function. | 59 | * gtkutil.c (tb_size_cb): New function. |