From: Richard M. Stallman Date: Sat, 12 Jul 1997 06:35:22 +0000 (+0000) Subject: (dumpglyphs): Declare local variable first_ch as Lisp_Object, not int. X-Git-Tag: emacs-20.1~1213 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=b264791c6b905daeb082fb5a1fa13b3457c7f82a;p=emacs.git (dumpglyphs): Declare local variable first_ch as Lisp_Object, not int. --- 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) {