diff -r 3f3b55a0f422 -r db48e3d8e208 src/conversation.c --- a/src/conversation.c Mon Nov 19 10:06:59 2001 +0000 +++ b/src/conversation.c Mon Nov 19 11:14:55 2001 +0000 @@ -509,10 +509,11 @@ if (!strcmp(pre_fontface, "")) { g_free(pre_fontface); alloc--; - pre_fontface = ""; + pre_fontface = ""; } - sprintf(c->fontface, "%s", newfont ? (newfont[0] ? newfont : "Helvetica") : "Helvetica"); + sprintf(c->fontface, "%s", newfont ? + (newfont[0] ? newfont : DEFAULT_FONT_FACE) : DEFAULT_FONT_FACE); c->hasfont = 1; surround(c->entry, pre_fontface, ""); gtk_widget_grab_focus(c->entry);