aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJason Rumney2000-05-30 21:38:23 +0000
committerJason Rumney2000-05-30 21:38:23 +0000
commitad784d768d4d83a954cd26e5867533206ffcf65e (patch)
treeb06af9ddf2b3c6f13ad877d6aa1e3e4ad852fc66 /src
parent8994bdd0440ad99f46aa3329bc9e9d2958584a81 (diff)
downloademacs-ad784d768d4d83a954cd26e5867533206ffcf65e.tar.gz
emacs-ad784d768d4d83a954cd26e5867533206ffcf65e.zip
(w32_load_bdf_font): Initialize font->double_byte_p.
Diffstat (limited to 'src')
-rw-r--r--src/w32bdf.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/w32bdf.c b/src/w32bdf.c
index 989db1f9cdd..932c874356f 100644
--- a/src/w32bdf.c
+++ b/src/w32bdf.c
@@ -634,6 +634,9 @@ struct font_info *w32_load_bdf_font (struct frame *f, char *fontname,
634 font->bdf = bdf_font; 634 font->bdf = bdf_font;
635 font->hfont = 0; 635 font->hfont = 0;
636 636
637 /* NTEMACS_TODO: Recognize DBCS fonts. */
638 font->double_byte_p = 0;
639
637 /* Do we need to create the table? */ 640 /* Do we need to create the table? */
638 if (dpyinfo->font_table_size == 0) 641 if (dpyinfo->font_table_size == 0)
639 { 642 {