From: Karl Heuer Date: Sat, 19 Mar 1994 02:51:37 +0000 (+0000) Subject: (dumpglyphs): Use the fast macros. X-Git-Tag: emacs-19.34~9439 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=6f63ba7956adafc621f7c66ff69af9b77f052123;p=emacs.git (dumpglyphs): Use the fast macros. --- diff --git a/src/xterm.c b/src/xterm.c index 93610d90921..6bc4b1a2f1d 100644 --- a/src/xterm.c +++ b/src/xterm.c @@ -497,7 +497,7 @@ dumpglyphs (f, left, top, gp, n, hl) int g = *gp; GLYPH_FOLLOW_ALIASES (tbase, tlen, g); - cf = GLYPH_FACE (g); + cf = FAST_GLYPH_FACE (g); /* Find the run of consecutive glyphs with the same face-code. Extract their character codes into BUF. */ @@ -506,10 +506,10 @@ dumpglyphs (f, left, top, gp, n, hl) { g = *gp; GLYPH_FOLLOW_ALIASES (tbase, tlen, g); - if (GLYPH_FACE (g) != cf) + if (FAST_GLYPH_FACE (g) != cf) break; - *cp++ = GLYPH_CHAR (g); + *cp++ = FAST_GLYPH_CHAR (g); --n; ++gp; }