* xrdb.c (x_load_resources): Use different char *helv when I18N

is present.
This commit is contained in:
Jan Djärv 2005-03-18 20:39:32 +00:00
parent 280840475e
commit c7f6afd598
2 changed files with 9 additions and 0 deletions

View file

@ -1,3 +1,8 @@
2005-03-18 Jan Dj,Ad(Brv <jan.h.d@swipnet.se>
* xrdb.c (x_load_resources): Use different char *helv when I18N
is present.
2005-03-17 Kenichi Handa <handa@m17n.org>
* coding.c (syms_of_coding): Docstring of coding-category-list

View file

@ -527,7 +527,11 @@ x_load_resources (display, xrm_string, myname, myclass)
XrmDatabase rdb;
XrmDatabase db;
char line[256];
#ifdef HAVE_X_I18N
char *helv = "-*-helvetica-medium-r-*--*-120-*-*-*-*,*";
#else
char *helv = "-*-helvetica-medium-r-*--*-120-*-*-*-*-iso8859-1";
#endif
#ifdef USE_MOTIF
char *courier = "-*-courier-medium-r-*-*-*-120-*-*-*-*-iso8859-1";
extern Lisp_Object Vdouble_click_time;