diff options
| author | Joakim Verona | 2013-03-10 00:04:02 +0100 |
|---|---|---|
| committer | Joakim Verona | 2013-03-10 00:04:02 +0100 |
| commit | c446797d60edf1058f6cbec28e57255d245dd47b (patch) | |
| tree | cde628bacb1ec48c0bea9b9db71516c953b1e534 /src/ChangeLog | |
| parent | 4b882bf72aa0ed074cde5c27af51b8cf0b4d8620 (diff) | |
| parent | 78cd48e721d04b94b35f6e02e7c1022092bf702e (diff) | |
| download | emacs-c446797d60edf1058f6cbec28e57255d245dd47b.tar.gz emacs-c446797d60edf1058f6cbec28e57255d245dd47b.zip | |
auto upstream
Diffstat (limited to 'src/ChangeLog')
| -rw-r--r-- | src/ChangeLog | 21 |
1 files changed, 15 insertions, 6 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 69e8303111a..ae25a3c5d00 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,12 @@ | |||
| 1 | 2013-03-09 Stefan Monnier <monnier@iro.umontreal.ca> | ||
| 2 | |||
| 3 | * keyboard.h (EVENT_START, EVENT_END, POSN_WINDOW, POSN_POSN) | ||
| 4 | (POSN_WINDOW_POSN, POSN_TIMESTAMP): Be careful since events may come | ||
| 5 | from Elisp via unread-command-events. | ||
| 6 | |||
| 7 | * keyboard.c (access_keymap_keyremap): Accept nil return value from | ||
| 8 | functions to mean "no change". | ||
| 9 | |||
| 1 | 2013-03-08 Paul Eggert <eggert@cs.ucla.edu> | 10 | 2013-03-08 Paul Eggert <eggert@cs.ucla.edu> |
| 2 | 11 | ||
| 3 | region-cache.c, scroll.c, search.c: Use bool for booleans. | 12 | region-cache.c, scroll.c, search.c: Use bool for booleans. |
| @@ -19,8 +28,8 @@ | |||
| 19 | * lisp.h (find_newline, find_newline_no_quit): Adjust prototype. | 28 | * lisp.h (find_newline, find_newline_no_quit): Adjust prototype. |
| 20 | * bidi.c (bidi_find_paragraph_start): Pass byte position to | 29 | * bidi.c (bidi_find_paragraph_start): Pass byte position to |
| 21 | find_newline_no_quit, thus eliminating CHAR_TO_BYTE. | 30 | find_newline_no_quit, thus eliminating CHAR_TO_BYTE. |
| 22 | * editfns.c (Fconstrain_to_field): Break long line. Adjust | 31 | * editfns.c (Fconstrain_to_field): Break long line. |
| 23 | call to find_newline. | 32 | Adjust call to find_newline. |
| 24 | * indent.c (vmotion): Adjust calls to find_newline_no_quit. | 33 | * indent.c (vmotion): Adjust calls to find_newline_no_quit. |
| 25 | Use DEC_BOTH to start next search from the previous buffer | 34 | Use DEC_BOTH to start next search from the previous buffer |
| 26 | position, where appropriate. | 35 | position, where appropriate. |
| @@ -270,8 +279,8 @@ | |||
| 270 | 279 | ||
| 271 | 2013-03-02 Eli Zaretskii <eliz@gnu.org> | 280 | 2013-03-02 Eli Zaretskii <eliz@gnu.org> |
| 272 | 281 | ||
| 273 | * textprop.c (Fadd_text_properties, Fremove_text_properties): If | 282 | * textprop.c (Fadd_text_properties, Fremove_text_properties): |
| 274 | the interval tree changes as a side effect of calling | 283 | If the interval tree changes as a side effect of calling |
| 275 | modify_region, re-do processing starting from the call to | 284 | modify_region, re-do processing starting from the call to |
| 276 | validate_interval_range. (Bug#13743) | 285 | validate_interval_range. (Bug#13743) |
| 277 | 286 | ||
| @@ -347,8 +356,8 @@ | |||
| 347 | * textprop.c (Fadd_text_properties, Fremove_text_properties) | 356 | * textprop.c (Fadd_text_properties, Fremove_text_properties) |
| 348 | (Fremove_list_of_text_properties): Skip all of the intervals in | 357 | (Fremove_list_of_text_properties): Skip all of the intervals in |
| 349 | the region between START and END that already have resp. don't | 358 | the region between START and END that already have resp. don't |
| 350 | have the requested properties, not just the first one. Add | 359 | have the requested properties, not just the first one. |
| 351 | assertions that the loop afterwards always modifies the | 360 | Add assertions that the loop afterwards always modifies the |
| 352 | properties. (Bug#13743) | 361 | properties. (Bug#13743) |
| 353 | 362 | ||
| 354 | 2013-02-25 Stefan Monnier <monnier@iro.umontreal.ca> | 363 | 2013-02-25 Stefan Monnier <monnier@iro.umontreal.ca> |