From b264791c6b905daeb082fb5a1fa13b3457c7f82a Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Sat, 12 Jul 1997 06:35:22 +0000 Subject: [PATCH] (dumpglyphs): Declare local variable first_ch as Lisp_Object, not int. --- src/xterm.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/xterm.c b/src/xterm.c index 2a32bcefe2d..005c3d33fbf 100644 --- a/src/xterm.c +++ b/src/xterm.c @@ -557,7 +557,8 @@ dumpglyphs (f, left, top, gp, n, hl, just_foreground, cmpcharp) /* Get the face-code of the next GLYPH. */ int cf, len; GLYPH g = *gp; - int ch, first_ch, charset; + int ch, charset; + Lisp_Object first_ch; /* HIGHEST and LOWEST are used while drawing a composite character. The meanings are described later. */ int highest, lowest; @@ -565,7 +566,7 @@ dumpglyphs (f, left, top, gp, n, hl, just_foreground, cmpcharp) GLYPH_FOLLOW_ALIASES (tbase, tlen, g); cf = (cmpcharp ? cmpcharp->face_work : FAST_GLYPH_FACE (g)); ch = FAST_GLYPH_CHAR (g); - if (gidx == 0) first_ch = ch; + if (gidx == 0) XSETFASTINT (first_ch, ch); charset = CHAR_CHARSET (ch); if (charset == CHARSET_COMPOSITION) { -- 2.39.5