From 6f63ba7956adafc621f7c66ff69af9b77f052123 Mon Sep 17 00:00:00 2001 From: Karl Heuer Date: Sat, 19 Mar 1994 02:51:37 +0000 Subject: [PATCH] (dumpglyphs): Use the fast macros. --- src/xterm.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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; } -- 2.39.5