diff options
| author | Dmitry Antipov | 2014-06-10 07:13:41 +0400 |
|---|---|---|
| committer | Dmitry Antipov | 2014-06-10 07:13:41 +0400 |
| commit | 2e120be4e9871626734ba8334897488019c00cdb (patch) | |
| tree | b884de0bf1396af6648446871d487465a8484782 /src/w32term.c | |
| parent | 29993416fb4d19c1c3bb146367fc4bed74845486 (diff) | |
| download | emacs-2e120be4e9871626734ba8334897488019c00cdb.tar.gz emacs-2e120be4e9871626734ba8334897488019c00cdb.zip | |
* dispextern.h (PREPARE_FACE_FOR_DISPLAY): Remove as a duplicate of ...
* xfaces.c (prepare_face_for_display) [HAVE_WINDOW_SYSTEM]: ... this
function. Also adjust comment.
* fringe.c, w32term.c, xdisp.c, xterm.c: All users changed.
Diffstat (limited to 'src/w32term.c')
| -rw-r--r-- | src/w32term.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/w32term.c b/src/w32term.c index cbaf823ae29..fc45bdd30a3 100644 --- a/src/w32term.c +++ b/src/w32term.c | |||
| @@ -1000,7 +1000,7 @@ x_set_mouse_face_gc (struct glyph_string *s) | |||
| 1000 | else | 1000 | else |
| 1001 | face_id = FACE_FOR_CHAR (s->f, face, 0, -1, Qnil); | 1001 | face_id = FACE_FOR_CHAR (s->f, face, 0, -1, Qnil); |
| 1002 | s->face = FACE_FROM_ID (s->f, face_id); | 1002 | s->face = FACE_FROM_ID (s->f, face_id); |
| 1003 | PREPARE_FACE_FOR_DISPLAY (s->f, s->face); | 1003 | prepare_face_for_display (s->f, s->face); |
| 1004 | 1004 | ||
| 1005 | /* If font in this face is same as S->font, use it. */ | 1005 | /* If font in this face is same as S->font, use it. */ |
| 1006 | if (s->font == s->face->font) | 1006 | if (s->font == s->face->font) |
| @@ -1050,7 +1050,7 @@ x_set_mode_line_face_gc (struct glyph_string *s) | |||
| 1050 | static inline void | 1050 | static inline void |
| 1051 | x_set_glyph_string_gc (struct glyph_string *s) | 1051 | x_set_glyph_string_gc (struct glyph_string *s) |
| 1052 | { | 1052 | { |
| 1053 | PREPARE_FACE_FOR_DISPLAY (s->f, s->face); | 1053 | prepare_face_for_display (s->f, s->face); |
| 1054 | 1054 | ||
| 1055 | if (s->hl == DRAW_NORMAL_TEXT) | 1055 | if (s->hl == DRAW_NORMAL_TEXT) |
| 1056 | { | 1056 | { |