From 08e7114177bcc65848a7a757336ef5cfd0de4a18 Mon Sep 17 00:00:00 2001 From: tomo Date: Mon, 12 Jun 2000 08:18:50 +0000 Subject: [PATCH] (compare_runes): Use `CHARC_EQ'. --- src/redisplay-output.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/redisplay-output.c b/src/redisplay-output.c index 2e05211..2100e8c 100644 --- a/src/redisplay-output.c +++ b/src/redisplay-output.c @@ -220,8 +220,7 @@ compare_runes (struct window *w, struct rune *crb, struct rune *drb) else if (crb->type != drb->type) return 0; else if (crb->type == RUNE_CHAR && - (!EQ (crb->object.cglyph.charset, drb->object.cglyph.charset) || - crb->object.cglyph.code_point != drb->object.cglyph.code_point)) + !CHARC_EQ (crb->object.cglyph, drb->object.cglyph)) return 0; else if (crb->type == RUNE_HLINE && (crb->object.hline.thickness != drb->object.hline.thickness || -- 1.7.10.4