aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorKarl Heuer1994-03-19 02:51:37 +0000
committerKarl Heuer1994-03-19 02:51:37 +0000
commit6f63ba7956adafc621f7c66ff69af9b77f052123 (patch)
tree4404c8bd6a2e37e3d4eafb0d7af98e5aaf1ca894 /src
parent5ff3b093bfaab7877d7d044134d6288f87fd9383 (diff)
downloademacs-6f63ba7956adafc621f7c66ff69af9b77f052123.tar.gz
emacs-6f63ba7956adafc621f7c66ff69af9b77f052123.zip
(dumpglyphs): Use the fast macros.
Diffstat (limited to 'src')
-rw-r--r--src/xterm.c6
1 files 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)
497 int g = *gp; 497 int g = *gp;
498 498
499 GLYPH_FOLLOW_ALIASES (tbase, tlen, g); 499 GLYPH_FOLLOW_ALIASES (tbase, tlen, g);
500 cf = GLYPH_FACE (g); 500 cf = FAST_GLYPH_FACE (g);
501 501
502 /* Find the run of consecutive glyphs with the same face-code. 502 /* Find the run of consecutive glyphs with the same face-code.
503 Extract their character codes into BUF. */ 503 Extract their character codes into BUF. */
@@ -506,10 +506,10 @@ dumpglyphs (f, left, top, gp, n, hl)
506 { 506 {
507 g = *gp; 507 g = *gp;
508 GLYPH_FOLLOW_ALIASES (tbase, tlen, g); 508 GLYPH_FOLLOW_ALIASES (tbase, tlen, g);
509 if (GLYPH_FACE (g) != cf) 509 if (FAST_GLYPH_FACE (g) != cf)
510 break; 510 break;
511 511
512 *cp++ = GLYPH_CHAR (g); 512 *cp++ = FAST_GLYPH_CHAR (g);
513 --n; 513 --n;
514 ++gp; 514 ++gp;
515 } 515 }