diff options
| author | Dmitry Antipov | 2013-08-28 15:00:03 +0400 |
|---|---|---|
| committer | Dmitry Antipov | 2013-08-28 15:00:03 +0400 |
| commit | c3c4768d2becd1f84c598e1463d089c224e83ea2 (patch) | |
| tree | cc32475a4cf3f88f9740faa3a292d0905a18f8c7 /src/ChangeLog | |
| parent | c65a2df9e3629bfda99e0f7dcb736097e098a7be (diff) | |
| download | emacs-c3c4768d2becd1f84c598e1463d089c224e83ea2.tar.gz emacs-c3c4768d2becd1f84c598e1463d089c224e83ea2.zip | |
Prefer enum glyph_row_area to int where appropriate.
* dispextern.h (enum glyph_row_area): Add ANY_AREA member.
Fix comment.
(window_box, window_box_width, window_box_left, window_box_left_offset)
(window_box_right, window_box_right_offset): Adjust prototypes.
* xdisp.c (window_box, window_box_width, window_box_left)
(window_box_left_offset, window_box_right, window_box_right_offset):
Use enum glyph_row_area. Adjust users and tweak comment where needed.
(window_box_edges): Likewise. Lost 2nd arg since it is always ANY_AREA.
* nsterm.m (ns_clip_to_row):
* w32term.c (w32_clip_to_row):
* xterm.c (x_clip_to_row): Likewise.
Diffstat (limited to 'src/ChangeLog')
| -rw-r--r-- | src/ChangeLog | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 37c167393f7..830de80faaa 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,5 +1,20 @@ | |||
| 1 | 2013-08-28 Dmitry Antipov <dmantipov@yandex.ru> | 1 | 2013-08-28 Dmitry Antipov <dmantipov@yandex.ru> |
| 2 | 2 | ||
| 3 | Prefer enum glyph_row_area to int where appropriate. | ||
| 4 | * dispextern.h (enum glyph_row_area): Add ANY_AREA member. | ||
| 5 | Fix comment. | ||
| 6 | (window_box, window_box_width, window_box_left, window_box_left_offset) | ||
| 7 | (window_box_right, window_box_right_offset): Adjust prototypes. | ||
| 8 | * xdisp.c (window_box, window_box_width, window_box_left) | ||
| 9 | (window_box_left_offset, window_box_right, window_box_right_offset): | ||
| 10 | Use enum glyph_row_area. Adjust users and tweak comment where needed. | ||
| 11 | (window_box_edges): Likewise. Lost 2nd arg since it is always ANY_AREA. | ||
| 12 | * nsterm.m (ns_clip_to_row): | ||
| 13 | * w32term.c (w32_clip_to_row): | ||
| 14 | * xterm.c (x_clip_to_row): Likewise. | ||
| 15 | |||
| 16 | 2013-08-28 Dmitry Antipov <dmantipov@yandex.ru> | ||
| 17 | |||
| 3 | * buffer.c (Foverlays_at, Foverlays_in, Fnext_overlay_change) | 18 | * buffer.c (Foverlays_at, Foverlays_in, Fnext_overlay_change) |
| 4 | (Fprevious_overlay_change): Fast path for buffer with no overlays. | 19 | (Fprevious_overlay_change): Fast path for buffer with no overlays. |
| 5 | 20 | ||