From: Kenichi Handa Date: Thu, 15 Jan 2004 06:58:07 +0000 (+0000) Subject: (x_set_mouse_face_gc): Call FACE_FOR_CHAR with POS and X-Git-Tag: emacs-pretest-23.0.90~8295^2~1639 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=fda2f91bacfe3e23204580e30f4ad43b1b6a7c17;p=emacs.git (x_set_mouse_face_gc): Call FACE_FOR_CHAR with POS and OBJECT args. --- diff --git a/src/macterm.c b/src/macterm.c index d00c1d690ac..ea4d5b98a8e 100644 --- a/src/macterm.c +++ b/src/macterm.c @@ -1649,9 +1649,9 @@ x_set_mouse_face_gc (s) face = FACE_FROM_ID (s->f, MOUSE_FACE_ID); if (s->first_glyph->type == CHAR_GLYPH) - face_id = FACE_FOR_CHAR (s->f, face, s->first_glyph->u.ch); + face_id = FACE_FOR_CHAR (s->f, face, s->first_glyph->u.ch, -1, Qnil); else - face_id = FACE_FOR_CHAR (s->f, face, 0); + face_id = FACE_FOR_CHAR (s->f, face, 0, -1, Qnil); s->face = FACE_FROM_ID (s->f, face_id); PREPARE_FACE_FOR_DISPLAY (s->f, s->face);