diff options
Diffstat (limited to 'src/ChangeLog')
| -rw-r--r-- | src/ChangeLog | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 4e8217cdf5f..3717924ff68 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,36 @@ | |||
| 1 | 2011-08-02 Eli Zaretskii <eliz@gnu.org> | ||
| 2 | |||
| 3 | Fix slow cursor motion and scrolling in large buffers with | ||
| 4 | selective display, like Org Mode buffers. (Bug#9218) | ||
| 5 | |||
| 6 | * dispextern.h (struct bidi_it): New member disp_prop_p. | ||
| 7 | |||
| 8 | * xdisp.c: Remove one-slot cache of display string positions. | ||
| 9 | (compute_display_string_pos): Accept an additional argument | ||
| 10 | DISP_PROP_P; callers changed. Scan at most 5K characters forward | ||
| 11 | for a display string or property. If found, set DISP_PROP_P | ||
| 12 | non-zero. | ||
| 13 | |||
| 14 | * bidi.c (bidi_fetch_char): Accept an additional argument | ||
| 15 | DISP_PROP_P, and pass it to compute_display_string_pos. Only | ||
| 16 | handle text covered by a display string if DISP_PROP_P is returned | ||
| 17 | non-zero. All callers of bidi_fetch_char changed. | ||
| 18 | |||
| 19 | 2011-08-02 Stefan Monnier <monnier@iro.umontreal.ca> | ||
| 20 | |||
| 21 | * keymap.c (Fdefine_key): Fix Lisp_Object/int mixup; apply some CSE. | ||
| 22 | |||
| 23 | 2010-12-03 Don March <don@ohspite.net> | ||
| 24 | |||
| 25 | * keymap.c (Fdefine_key): Fix non-prefix key error message when | ||
| 26 | last character M-[char] is translated to ESC [char] (bug#7541). | ||
| 27 | |||
| 28 | 2011-08-02 Kenichi Handa <handa@m17n.org> | ||
| 29 | |||
| 30 | * lisp.h (uniprop_table): Extern it. | ||
| 31 | |||
| 32 | * chartab.c (uniprop_table): Make it non-static. | ||
| 33 | |||
| 1 | 2011-08-01 Eli Zaretskii <eliz@gnu.org> | 34 | 2011-08-01 Eli Zaretskii <eliz@gnu.org> |
| 2 | 35 | ||
| 3 | * xdisp.c (forward_to_next_line_start): Accept additional argument | 36 | * xdisp.c (forward_to_next_line_start): Accept additional argument |