diff options
| author | Paul Eggert | 2011-08-02 22:05:38 -0700 |
|---|---|---|
| committer | Paul Eggert | 2011-08-02 22:05:38 -0700 |
| commit | 9a70f03d70e44db2ec9c6d2952cb8a1deae15000 (patch) | |
| tree | c0efd5c0a208640c0a883f4566df1b40caa3aaad /src/ChangeLog | |
| parent | 29c8a348c5c9f326af54a3d30f69cde98fe300bb (diff) | |
| download | emacs-9a70f03d70e44db2ec9c6d2952cb8a1deae15000.tar.gz emacs-9a70f03d70e44db2ec9c6d2952cb8a1deae15000.zip | |
Merge from trunk.
Diffstat (limited to 'src/ChangeLog')
| -rw-r--r-- | src/ChangeLog | 53 |
1 files changed, 53 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 3eaa3d5eadd..3717924ff68 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,56 @@ | |||
| 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 | |||
| 34 | 2011-08-01 Eli Zaretskii <eliz@gnu.org> | ||
| 35 | |||
| 36 | * xdisp.c (forward_to_next_line_start): Accept additional argument | ||
| 37 | BIDI_IT_PREV, and store into it the state of the bidi iterator had | ||
| 38 | on the newline. | ||
| 39 | (reseat_at_next_visible_line_start): Use the bidi iterator state | ||
| 40 | returned by forward_to_next_line_start to restore the state of | ||
| 41 | it->bidi_it after backing up to previous newline. (Bug#9212) | ||
| 42 | |||
| 43 | 2011-07-30 Andreas Schwab <schwab@linux-m68k.org> | ||
| 44 | |||
| 45 | * regex.c (re_comp): Protoize. | ||
| 46 | (re_exec): Fix return type. | ||
| 47 | (regexec): Fix type of `ret'. (Bug#9203) | ||
| 48 | |||
| 49 | 2011-07-29 Paul Eggert <eggert@cs.ucla.edu> | ||
| 50 | |||
| 51 | * image.c (check_image_size): Use 1024x1024 if unknown frame (Bug#9189). | ||
| 52 | This is needed if max-image-size is a floating-point number. | ||
| 53 | |||
| 1 | 2011-07-28 Andreas Schwab <schwab@linux-m68k.org> | 54 | 2011-07-28 Andreas Schwab <schwab@linux-m68k.org> |
| 2 | 55 | ||
| 3 | * print.c (print_object): Print empty symbol as ##. | 56 | * print.c (print_object): Print empty symbol as ##. |