From: tomo Date: Mon, 12 Jun 2000 08:18:50 +0000 (+0000) Subject: (compare_runes): Use `CHARC_EQ'. X-Git-Tag: r21-2-34-utf-2000-0_16-1~41 X-Git-Url: http://git.chise.org/gitweb/?a=commitdiff_plain;h=08e7114177bcc65848a7a757336ef5cfd0de4a18;p=chise%2Fxemacs-chise.git.1 (compare_runes): Use `CHARC_EQ'. --- 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 ||