changeset 6413:6eb1a3cf0371

(dumpglyphs): Use the fast macros.
author Karl Heuer <kwzh@gnu.org>
date Sat, 19 Mar 1994 02:51:37 +0000
parents 84d5a22db4c8
children d681b16231a8
files src/xterm.c
diffstat 1 files changed, 3 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/src/xterm.c	Sat Mar 19 01:05:27 1994 +0000
+++ b/src/xterm.c	Sat Mar 19 02:51:37 1994 +0000
@@ -497,7 +497,7 @@
       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 @@
 	{
 	  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;
 	}