Minor fix to the patch from the other day.

SVN revision: 3922
This commit is contained in:
Michael Jennings 2000-11-26 04:59:38 +00:00
parent 1a4de140ef
commit f6c6837bf9
1 changed files with 2 additions and 2 deletions

View File

@ -1762,7 +1762,7 @@ init_locale(void)
char *locale = NULL; char *locale = NULL;
locale = setlocale(LC_ALL, ""); locale = setlocale(LC_ALL, "");
TermWin.fontset = (XFontSet) -1; TermWin.fontset = (XFontSet) 0;
if (locale == NULL) { if (locale == NULL) {
print_error("Setting locale failed.\n"); print_error("Setting locale failed.\n");
} else { } else {
@ -1776,7 +1776,7 @@ init_locale(void)
#else #else
TermWin.fontset = create_fontset(etfonts[def_font_idx], "-misc-fixed-medium-r-semicondensed--13-*-75-*-c-*-iso10646-1"); TermWin.fontset = create_fontset(etfonts[def_font_idx], "-misc-fixed-medium-r-semicondensed--13-*-75-*-c-*-iso10646-1");
#endif #endif
if (xim_real_init() != -1) { if ((TermWin.fontset == (XFontSet) 0) || (xim_real_init() != -1)) {
return; return;
} }