diff options
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 84cd041c36c..996bbb78995 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,61 @@ | |||
| 1 | 2014-03-26 Paul Eggert <eggert@cs.ucla.edu> | ||
| 2 | |||
| 3 | Fix core dump in char-equal (Bug#17011). | ||
| 4 | * editfns.c (Fchar_equal): Do not use MAKE_CHAR_MULTIBYTE in | ||
| 5 | unibyte buffers, as we can't tell whether the characters are | ||
| 6 | actually unibyte. | ||
| 7 | |||
| 8 | * insdel.c (adjust_markers_for_delete): Remove unused local. | ||
| 9 | |||
| 10 | 2014-03-26 Barry O'Reilly <gundaetiapo@gmail.com> | ||
| 11 | |||
| 12 | Have (MARKER . ADJUSTMENT) undo records always be immediately | ||
| 13 | after their corresponding (TEXT . POS) record in undo list. | ||
| 14 | (Bug#16818) | ||
| 15 | * lisp.h (record-delete): New arg record_markers. | ||
| 16 | (record_marker_adjustment): No longer needed outside undo.c. | ||
| 17 | * insdel.c (adjust_markers_for_delete): Move calculation of marker | ||
| 18 | adjustments to undo.c's record_marker_adjustments. Note that | ||
| 19 | fileio.c's decide_coding_unwind is another caller to | ||
| 20 | adjust_markers_for_delete. Because it has undo list bound to t, | ||
| 21 | it does not rely on adjust_markers_for_delete to record marker | ||
| 22 | adjustments. | ||
| 23 | (del_range_2): Swap call to record_delete and | ||
| 24 | adjust_markers_for_delete so as undo marker adjustments are | ||
| 25 | recorded before current deletion's adjustments, as before. | ||
| 26 | (adjust_after_replace): | ||
| 27 | (replace_range): Pass value for new record_markers arg to | ||
| 28 | delete_record. | ||
| 29 | * undo.c (record_marker_adjustment): Renamed to | ||
| 30 | record_marker_adjustments and made static. | ||
| 31 | (record_delete): Check record_markers arg and call | ||
| 32 | record_marker_adjustments. | ||
| 33 | (record_change): Pass value for new record_markers arg to | ||
| 34 | delete_record. | ||
| 35 | (record_point): at_boundary calculation no longer needs to account | ||
| 36 | for marker adjustments. | ||
| 37 | |||
| 38 | 2014-03-26 Martin Rudalics <rudalics@gmx.at> | ||
| 39 | |||
| 40 | * w32term.c (x_set_window_size): Refine fix from 2014-03-14 | ||
| 41 | (Bug#17077). | ||
| 42 | |||
| 43 | 2014-03-26 Glenn Morris <rgm@gnu.org> | ||
| 44 | |||
| 45 | * fileio.c (Ffile_symlink_p): Doc fix. (Bug#17073) | ||
| 46 | |||
| 47 | 2014-03-26 Stefan Monnier <monnier@iro.umontreal.ca> | ||
| 48 | |||
| 49 | * buffer.c (struct sortvec): Add field `spriority'. | ||
| 50 | (compare_overlays): Use it. | ||
| 51 | (sort_overlays): Set it. | ||
| 52 | |||
| 53 | 2014-03-26 Eli Zaretskii <eliz@gnu.org> | ||
| 54 | |||
| 55 | * xdisp.c (redisplay_window): If all previous attempts to find the | ||
| 56 | cursor row failed, try a few alternatives before falling back to | ||
| 57 | the top-most row of the window. Use row_containing_pos. (Bug#17047) | ||
| 58 | |||
| 1 | 2014-03-26 Juanma Barranquero <lekktu@gmail.com> | 59 | 2014-03-26 Juanma Barranquero <lekktu@gmail.com> |
| 2 | 60 | ||
| 3 | * image.c (x_bitmap_height, x_bitmap_width) [HAVE_X_WINDOWS]: | 61 | * image.c (x_bitmap_height, x_bitmap_width) [HAVE_X_WINDOWS]: |