(dumpglyphs): Use the fast macros.
authorKarl Heuer <kwzh@gnu.org>
Sat, 19 Mar 1994 02:51:37 +0000 (02:51 +0000)
committerKarl Heuer <kwzh@gnu.org>
Sat, 19 Mar 1994 02:51:37 +0000 (02:51 +0000)
src/xterm.c

index 93610d9..6bc4b1a 100644 (file)
@@ -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;
        }