diff options
| author | Gerd Moellmann | 2000-06-06 12:27:18 +0000 |
|---|---|---|
| committer | Gerd Moellmann | 2000-06-06 12:27:18 +0000 |
| commit | d13f3e2e2421ae5cba10e98693308f3ecdf7210e (patch) | |
| tree | 7e5aa0f834f36daecbf2462691385750b7bebfec /src | |
| parent | 3b3c4bf057e55157136cac42746db6e75aee44ab (diff) | |
| download | emacs-d13f3e2e2421ae5cba10e98693308f3ecdf7210e.tar.gz emacs-d13f3e2e2421ae5cba10e98693308f3ecdf7210e.zip | |
(append_glyph): Revert change of 2000-06-06.
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 6 | ||||
| -rw-r--r-- | src/term.c | 2 |
2 files changed, 7 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index ba45719d3fa..654c9f221b8 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,5 +1,11 @@ | |||
| 1 | 2000-06-06 Gerd Moellmann <gerd@gnu.org> | 1 | 2000-06-06 Gerd Moellmann <gerd@gnu.org> |
| 2 | 2 | ||
| 3 | * term.c (append_glyph): Revert change of 2000-06-06. | ||
| 4 | |||
| 5 | * xdisp.c (display_line): Revert change of 2000-06-06. Treat | ||
| 6 | padding glyph not fitting on line as whole character not | ||
| 7 | fitting on line. | ||
| 8 | |||
| 3 | * xterm.c (x_produce_glyphs): Don't xassert `it->descent > 0'; | 9 | * xterm.c (x_produce_glyphs): Don't xassert `it->descent > 0'; |
| 4 | this isn't true for images with `:ascent 100'. | 10 | this isn't true for images with `:ascent 100'. |
| 5 | 11 | ||
diff --git a/src/term.c b/src/term.c index d21b78c6b62..5d8e7bb658d 100644 --- a/src/term.c +++ b/src/term.c | |||
| @@ -1783,7 +1783,7 @@ append_glyph (it) | |||
| 1783 | ++i) | 1783 | ++i) |
| 1784 | { | 1784 | { |
| 1785 | glyph->type = CHAR_GLYPH; | 1785 | glyph->type = CHAR_GLYPH; |
| 1786 | glyph->pixel_width = it->pixel_width; | 1786 | glyph->pixel_width = 1; |
| 1787 | glyph->u.ch = it->c; | 1787 | glyph->u.ch = it->c; |
| 1788 | glyph->face_id = it->face_id; | 1788 | glyph->face_id = it->face_id; |
| 1789 | glyph->padding_p = i > 0; | 1789 | glyph->padding_p = i > 0; |