diff options
| author | Joakim Verona | 2013-03-09 00:03:56 +0100 |
|---|---|---|
| committer | Joakim Verona | 2013-03-09 00:03:56 +0100 |
| commit | 4b882bf72aa0ed074cde5c27af51b8cf0b4d8620 (patch) | |
| tree | d32cae5604492ab5734e22a2b10084b0e2fda0ab /src/ChangeLog | |
| parent | 3a9e4f9ae9be6b16a33789a81b314e6efc7821c7 (diff) | |
| parent | 457882c20c301f076ff6a4ef7ffd78ed3d35e699 (diff) | |
| download | emacs-4b882bf72aa0ed074cde5c27af51b8cf0b4d8620.tar.gz emacs-4b882bf72aa0ed074cde5c27af51b8cf0b4d8620.zip | |
auto upstream
Diffstat (limited to 'src/ChangeLog')
| -rw-r--r-- | src/ChangeLog | 58 |
1 files changed, 58 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 54b1fd04503..69e8303111a 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,61 @@ | |||
| 1 | 2013-03-08 Paul Eggert <eggert@cs.ucla.edu> | ||
| 2 | |||
| 3 | region-cache.c, scroll.c, search.c: Use bool for booleans. | ||
| 4 | * lisp.h (compile_pattern): | ||
| 5 | * scroll.c (do_scrolling, do_direct_scrolling): | ||
| 6 | * search.c (struct regexp_cache, compile_pattern_1) | ||
| 7 | (compile_pattern, string_match_1, search_command) | ||
| 8 | (trivial_regexp_p, search_buffer, Freplace_match, match_limit) | ||
| 9 | (search_regs_saved, Fregexp_quote): | ||
| 10 | Use bool for boolean. | ||
| 11 | * region-cache.c (region_cache_forward, region_cache_backward): | ||
| 12 | Fix comments to match code: these functions return int, not boolean. | ||
| 13 | |||
| 14 | 2013-03-08 Dmitry Antipov <dmantipov@yandex.ru> | ||
| 15 | |||
| 16 | * search.c (find_newline): Accept start and end byte positions | ||
| 17 | as arguments and allow -1 if not known. | ||
| 18 | (find_newline_no_quit): Likewise for start position. | ||
| 19 | * lisp.h (find_newline, find_newline_no_quit): Adjust prototype. | ||
| 20 | * bidi.c (bidi_find_paragraph_start): Pass byte position to | ||
| 21 | find_newline_no_quit, thus eliminating CHAR_TO_BYTE. | ||
| 22 | * editfns.c (Fconstrain_to_field): Break long line. Adjust | ||
| 23 | call to find_newline. | ||
| 24 | * indent.c (vmotion): Adjust calls to find_newline_no_quit. | ||
| 25 | Use DEC_BOTH to start next search from the previous buffer | ||
| 26 | position, where appropriate. | ||
| 27 | * xdisp.c (back_to_previous_line_start, forward_to_next_line_start) | ||
| 28 | (get_visually_first_element, move_it_vertically_backward): Likewise. | ||
| 29 | Obtain byte position from the display iterator, where appropriate. | ||
| 30 | |||
| 31 | 2013-03-08 Paul Eggert <eggert@cs.ucla.edu> | ||
| 32 | |||
| 33 | print.c, process.c: Use bool for booleans. | ||
| 34 | * lisp.h (wait_reading_process_output): | ||
| 35 | * print.c (print_output_debug_flag, PRINTDECLARE, printchar) | ||
| 36 | (strout, debug_output_compilation_hack, float_to_string, print) | ||
| 37 | (print_object): | ||
| 38 | * process.c (kbd_is_on_hold, inhibit_sentinels, process_output_skip) | ||
| 39 | (decode_status, status_message, create_process, create_pty) | ||
| 40 | (Fmake_network_process, Fnetwork_interface_info) | ||
| 41 | (wait_reading_process_output, read_process_output) | ||
| 42 | (write_queue_push, write_queue_pop, process_send_signal) | ||
| 43 | (handle_child_signal, keyboard_bit_set, kbd_on_hold_p): | ||
| 44 | * process.h (struct Lisp_Process, inhibit_sentinels, kbd_on_hold_p): | ||
| 45 | Use bool for booleans. | ||
| 46 | * process.c (Fnetwork_interface_list): Remove unused local. | ||
| 47 | (connect_counter): Now EMACS_INT, not int. | ||
| 48 | |||
| 49 | 2013-03-08 Dmitry Antipov <dmantipov@yandex.ru> | ||
| 50 | |||
| 51 | * bidi.c (bidi_fetch_char): Swap first and second arguments | ||
| 52 | to match other functions accepting character and byte positions. | ||
| 53 | Adjust comment. | ||
| 54 | (bidi_resolve_explicit_1, bidi_level_of_next_char): Adjust users. | ||
| 55 | (bidi_paragraph_init): Likewise. Use DEC_BOTH which is faster | ||
| 56 | when you need just to move to the previous buffer position. | ||
| 57 | * xdisp.c (Fcurrent_bidi_paragraph_direction): Use DEC_BOTH. | ||
| 58 | |||
| 1 | 2013-03-07 Eli Zaretskii <eliz@gnu.org> | 59 | 2013-03-07 Eli Zaretskii <eliz@gnu.org> |
| 2 | 60 | ||
| 3 | * .gdbinit (prowlims): Display the enabled_p flag of the row. | 61 | * .gdbinit (prowlims): Display the enabled_p flag of the row. |