diff options
| author | Ken Raeburn | 2006-03-22 05:06:41 +0000 |
|---|---|---|
| committer | Ken Raeburn | 2006-03-22 05:06:41 +0000 |
| commit | d63cd76657e12b92a5d7736a15bc9b97a7f9990e (patch) | |
| tree | 0b4d5ae2f2e04525a94380fdd138056ef06f77c2 /src | |
| parent | 926dbbb0533b676d17e208a688be418397ae0a5e (diff) | |
| download | emacs-d63cd76657e12b92a5d7736a15bc9b97a7f9990e.tar.gz emacs-d63cd76657e12b92a5d7736a15bc9b97a7f9990e.zip | |
(store_next_glyph): Renamed from append_glyph.
(generate_stretch_glyph): Renamed from produce_stretch_glyph.
All callers changed accordingly.
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 6 | ||||
| -rw-r--r-- | src/xdisp.c | 10 |
2 files changed, 11 insertions, 5 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index d699b23f059..867306579ab 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,9 @@ | |||
| 1 | 2006-03-21 Ken Raeburn <raeburn@raeburn.org> | ||
| 2 | |||
| 3 | * xdisp.c (store_next_glyph): Renamed from append_glyph. | ||
| 4 | (generate_stretch_glyph): Renamed from produce_stretch_glyph. | ||
| 5 | All callers changed accordingly. | ||
| 6 | |||
| 1 | 2006-03-21 Jan Dj,Ad(Brv <jan.h.d@swipnet.se> | 7 | 2006-03-21 Jan Dj,Ad(Brv <jan.h.d@swipnet.se> |
| 2 | 8 | ||
| 3 | * xterm.c: x_session_initialized new variable. | 9 | * xterm.c: x_session_initialized new variable. |
diff --git a/src/xdisp.c b/src/xdisp.c index 7b1c5cd96fb..b83d8250df9 100644 --- a/src/xdisp.c +++ b/src/xdisp.c | |||
| @@ -19383,7 +19383,7 @@ draw_glyphs (w, x, row, area, start, end, hl, overlaps) | |||
| 19383 | Called from x_produce_glyphs when IT->glyph_row is non-null. */ | 19383 | Called from x_produce_glyphs when IT->glyph_row is non-null. */ |
| 19384 | 19384 | ||
| 19385 | static INLINE void | 19385 | static INLINE void |
| 19386 | append_glyph (it) | 19386 | store_next_glyph (it) |
| 19387 | struct it *it; | 19387 | struct it *it; |
| 19388 | { | 19388 | { |
| 19389 | struct glyph *glyph; | 19389 | struct glyph *glyph; |
| @@ -19707,7 +19707,7 @@ append_stretch_glyph (it, object, width, height, ascent) | |||
| 19707 | ASCENT must be in the range 0 <= ASCENT <= 100. */ | 19707 | ASCENT must be in the range 0 <= ASCENT <= 100. */ |
| 19708 | 19708 | ||
| 19709 | static void | 19709 | static void |
| 19710 | produce_stretch_glyph (it) | 19710 | generate_stretch_glyph (it) |
| 19711 | struct it *it; | 19711 | struct it *it; |
| 19712 | { | 19712 | { |
| 19713 | /* (space :width WIDTH :height HEIGHT ...) */ | 19713 | /* (space :width WIDTH :height HEIGHT ...) */ |
| @@ -20133,7 +20133,7 @@ x_produce_glyphs (it) | |||
| 20133 | it->ascent + it->descent, ascent); | 20133 | it->ascent + it->descent, ascent); |
| 20134 | } | 20134 | } |
| 20135 | else | 20135 | else |
| 20136 | append_glyph (it); | 20136 | store_next_glyph (it); |
| 20137 | 20137 | ||
| 20138 | /* If characters with lbearing or rbearing are displayed | 20138 | /* If characters with lbearing or rbearing are displayed |
| 20139 | in this line, record that fact in a flag of the | 20139 | in this line, record that fact in a flag of the |
| @@ -20315,7 +20315,7 @@ x_produce_glyphs (it) | |||
| 20315 | take_vertical_position_into_account (it); | 20315 | take_vertical_position_into_account (it); |
| 20316 | 20316 | ||
| 20317 | if (it->glyph_row) | 20317 | if (it->glyph_row) |
| 20318 | append_glyph (it); | 20318 | store_next_glyph (it); |
| 20319 | } | 20319 | } |
| 20320 | it->multibyte_p = saved_multibyte_p; | 20320 | it->multibyte_p = saved_multibyte_p; |
| 20321 | } | 20321 | } |
| @@ -20595,7 +20595,7 @@ x_produce_glyphs (it) | |||
| 20595 | else if (it->what == IT_IMAGE) | 20595 | else if (it->what == IT_IMAGE) |
| 20596 | produce_image_glyph (it); | 20596 | produce_image_glyph (it); |
| 20597 | else if (it->what == IT_STRETCH) | 20597 | else if (it->what == IT_STRETCH) |
| 20598 | produce_stretch_glyph (it); | 20598 | generate_stretch_glyph (it); |
| 20599 | 20599 | ||
| 20600 | /* Accumulate dimensions. Note: can't assume that it->descent > 0 | 20600 | /* Accumulate dimensions. Note: can't assume that it->descent > 0 |
| 20601 | because this isn't true for images with `:ascent 100'. */ | 20601 | because this isn't true for images with `:ascent 100'. */ |