diff options
| author | Kim F. Storm | 2005-10-07 21:47:18 +0000 |
|---|---|---|
| committer | Kim F. Storm | 2005-10-07 21:47:18 +0000 |
| commit | f1010549551eb7a4311b3dd31b7f1c965a0dbec9 (patch) | |
| tree | 6b1f770e83c659536f205b0c509b9b568a4be236 /src | |
| parent | 8868c48e5a318283d6bd873d12922d21cd758d0c (diff) | |
| download | emacs-f1010549551eb7a4311b3dd31b7f1c965a0dbec9.tar.gz emacs-f1010549551eb7a4311b3dd31b7f1c965a0dbec9.zip | |
*** empty log message ***
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 20 |
1 files changed, 12 insertions, 8 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index deb3ca4fbe9..74635e6df75 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,9 @@ | |||
| 1 | 2005-10-07 Kim F. Storm <storm@cua.dk> | ||
| 2 | |||
| 3 | * dispnew.c (redraw_overlapped_rows, redraw_overlapping_rows) | ||
| 4 | [!HAVE_WINDOW_SYSTEM]: Don't declare them... | ||
| 5 | (update_window) [!HAVE_WINDOW_SYSTEM]: ...and don't call them. | ||
| 6 | |||
| 1 | 2005-10-07 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp> | 7 | 2005-10-07 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp> |
| 2 | 8 | ||
| 3 | * dispextern.h (struct glyph_string): Rename member for_overlaps_p | 9 | * dispextern.h (struct glyph_string): Rename member for_overlaps_p |
| @@ -15,19 +21,17 @@ | |||
| 15 | * xdisp.c: Rename member for_overlaps_p in struct glyph_string to | 21 | * xdisp.c: Rename member for_overlaps_p in struct glyph_string to |
| 16 | for_overlaps. | 22 | for_overlaps. |
| 17 | (get_glyph_string_clip_rects): New function created from | 23 | (get_glyph_string_clip_rects): New function created from |
| 18 | get_glyph_string_clip_rect. Set clipping rectangles according to | 24 | get_glyph_string_clip_rect. Set clipping rectangles according to the |
| 19 | the value of for_overlaps. Enable to store multiple clipping | 25 | value of for_overlaps. Enable to store multiple clipping rectangles. |
| 20 | rectangles. | ||
| 21 | (get_glyph_string_clip_rect): Use get_glyph_string_clip_rects. | 26 | (get_glyph_string_clip_rect): Use get_glyph_string_clip_rects. |
| 22 | (fill_composite_glyph_string, fill_glyph_string, draw_glyphs): | 27 | (fill_composite_glyph_string, fill_glyph_string, draw_glyphs): |
| 23 | Rename argument OVERLAPS_P to OVERLAPS. All uses in macros changed. | 28 | Rename argument OVERLAPS_P to OVERLAPS. All uses in macros changed. |
| 24 | (x_fix_overlapping_area): Add OVERLAPS arg. Pass it to draw_glyphs. | 29 | (x_fix_overlapping_area): Add OVERLAPS arg. Pass it to draw_glyphs. |
| 25 | (draw_phys_cursor_glyph): Set width of erased cursor to use it for | 30 | (draw_phys_cursor_glyph): Set width of erased cursor to use it for |
| 26 | calculating clipping rectangles later. Call | 31 | calculating clipping rectangles later. Call x_fix_overlapping_area |
| 27 | x_fix_overlapping_area with new OVERLAPS arg to draw only erased | 32 | with new OVERLAPS arg to draw only erased cursor area. |
| 28 | cursor area. | 33 | (expose_overlaps): Call x_fix_overlapping_area with new OVERLAPS arg |
| 29 | (expose_overlaps): Call x_fix_overlapping_area with new | 34 | to draw overlaps in both preceding and succeeding rows. |
| 30 | OVERLAPS arg to draw overlaps in both preceding and succeeding rows. | ||
| 31 | 35 | ||
| 32 | * xterm.c, w32term.c, macterm.c: Rename member for_overlaps_p in | 36 | * xterm.c, w32term.c, macterm.c: Rename member for_overlaps_p in |
| 33 | struct glyph_string to for_overlaps. | 37 | struct glyph_string to for_overlaps. |