diff options
author | Kenichi Handa <handa@m17n.org> | 2008-02-06 11:53:49 +0000 |
---|---|---|
committer | Kenichi Handa <handa@m17n.org> | 2008-02-06 11:53:49 +0000 |
commit | 794e558c7f5e38517b2c929401852e2f03920726 (patch) | |
tree | 6523cec1043a7297bf9fff98b82043dd4904be4a /src/ftxfont.c | |
parent | 1a2bd6faa2cf7f17cec38317e23eda3855ce838d (diff) | |
download | emacs-794e558c7f5e38517b2c929401852e2f03920726.tar.gz |
(ftxfont_draw): Use s->font_info, not face->font_info.
Diffstat (limited to 'src/ftxfont.c')
-rw-r--r-- | src/ftxfont.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ftxfont.c b/src/ftxfont.c index 5b0ff5faa8c..49222fdb514 100644 --- a/src/ftxfont.c +++ b/src/ftxfont.c @@ -370,7 +370,7 @@ ftxfont_draw (s, from, to, x, y, with_background) { FRAME_PTR f = s->f; struct face *face = s->face; - struct font *font = (struct font *) face->font_info; + struct font *font = (struct font *) s->font_info; XPoint p[0x700]; int n[7]; unsigned *code; |