diff options
| author | Kim F. Storm | 2004-04-27 08:48:12 +0000 |
|---|---|---|
| committer | Kim F. Storm | 2004-04-27 08:48:12 +0000 |
| commit | c4c07982c1a6b3ddd9339ecdb9af1876f70d8792 (patch) | |
| tree | df313b4b1818429742a6ba0ea14730d315a86c3d /src | |
| parent | 07dc12319ce94d59b5cef451fd6f1f21f6240650 (diff) | |
| download | emacs-c4c07982c1a6b3ddd9339ecdb9af1876f70d8792.tar.gz emacs-c4c07982c1a6b3ddd9339ecdb9af1876f70d8792.zip | |
(x_produce_glyphs): Fix last change; handle newline in
header line strings.
Diffstat (limited to 'src')
| -rw-r--r-- | src/xdisp.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/xdisp.c b/src/xdisp.c index 4993ae12fb9..2ef3722c080 100644 --- a/src/xdisp.c +++ b/src/xdisp.c | |||
| @@ -18708,7 +18708,7 @@ x_produce_glyphs (it) | |||
| 18708 | it->pixel_width = 0; | 18708 | it->pixel_width = 0; |
| 18709 | it->nglyphs = 0; | 18709 | it->nglyphs = 0; |
| 18710 | 18710 | ||
| 18711 | lh = Fget_text_property (IT_CHARPOS (*it), Qline_height, it->w->buffer); | 18711 | lh = Fget_text_property (IT_CHARPOS (*it), Qline_height, it->object); |
| 18712 | 18712 | ||
| 18713 | if (EQ (lh, Qt)) | 18713 | if (EQ (lh, Qt)) |
| 18714 | { | 18714 | { |
| @@ -18760,7 +18760,7 @@ x_produce_glyphs (it) | |||
| 18760 | it->ascent = explicit_height - it->descent; | 18760 | it->ascent = explicit_height - it->descent; |
| 18761 | } | 18761 | } |
| 18762 | 18762 | ||
| 18763 | lsp = Fget_text_property (IT_CHARPOS (*it), Qline_spacing, it->w->buffer); | 18763 | lsp = Fget_text_property (IT_CHARPOS (*it), Qline_spacing, it->object); |
| 18764 | if (INTEGERP (lsp)) | 18764 | if (INTEGERP (lsp)) |
| 18765 | extra_line_spacing = XINT (lsp); | 18765 | extra_line_spacing = XINT (lsp); |
| 18766 | else if (FLOATP (lsp)) | 18766 | else if (FLOATP (lsp)) |