diff options
| author | Eli Zaretskii | 2010-02-20 05:25:57 -0500 |
|---|---|---|
| committer | Eli Zaretskii | 2010-02-20 05:25:57 -0500 |
| commit | d77fbdad04a1e3f8e4fa1038508379a5f5b8e67e (patch) | |
| tree | d20e47abe63806acbc519454e597ab7dc6ced017 /src/term.c | |
| parent | ae9784892b7c9005b792b026d466af105bcb655f (diff) | |
| parent | 0f00e9485d96c308b126553bd1b90ce4e64f1a1d (diff) | |
| download | emacs-d77fbdad04a1e3f8e4fa1038508379a5f5b8e67e.tar.gz emacs-d77fbdad04a1e3f8e4fa1038508379a5f5b8e67e.zip | |
Merge from mainline.
Diffstat (limited to 'src/term.c')
| -rw-r--r-- | src/term.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/term.c b/src/term.c index a90bb2a0762..dbfdf80d905 100644 --- a/src/term.c +++ b/src/term.c | |||
| @@ -1600,8 +1600,9 @@ append_glyph (it) | |||
| 1600 | and where in the glyph matrix we currently are (glyph row and hpos). | 1600 | and where in the glyph matrix we currently are (glyph row and hpos). |
| 1601 | produce_glyphs fills in output fields of *IT with information such as the | 1601 | produce_glyphs fills in output fields of *IT with information such as the |
| 1602 | pixel width and height of a character, and maybe output actual glyphs at | 1602 | pixel width and height of a character, and maybe output actual glyphs at |
| 1603 | the same time if IT->glyph_row is non-null. See the explanation of | 1603 | the same time if IT->glyph_row is non-null. For an overview, see |
| 1604 | struct display_iterator in dispextern.h for an overview. | 1604 | the explanation in dispextern.h, before the definition of the |
| 1605 | display_element_type enumeration. | ||
| 1605 | 1606 | ||
| 1606 | produce_glyphs also stores the result of glyph width, ascent | 1607 | produce_glyphs also stores the result of glyph width, ascent |
| 1607 | etc. computations in *IT. | 1608 | etc. computations in *IT. |
| @@ -3970,6 +3971,8 @@ fatal (const char *str, ...) | |||
| 3970 | va_start (ap, str); | 3971 | va_start (ap, str); |
| 3971 | fprintf (stderr, "emacs: "); | 3972 | fprintf (stderr, "emacs: "); |
| 3972 | vfprintf (stderr, str, ap); | 3973 | vfprintf (stderr, str, ap); |
| 3974 | if (!(strlen (str) > 0 && str[strlen (str) - 1] == '\n')) | ||
| 3975 | fprintf (stderr, "\n"); | ||
| 3973 | va_end (ap); | 3976 | va_end (ap); |
| 3974 | fflush (stderr); | 3977 | fflush (stderr); |
| 3975 | exit (1); | 3978 | exit (1); |