# HG changeset patch # User Glenn Morris # Date 1227668394 0 # Node ID 33b7fbb60fa069fc2b001ccbacfc86071743428c # Parent c0f837f2c14b3ad6d783b93b6af12ca2e3e25f6f (Fx_font_family_list): Replace lisp/term/pc-win.el redefinition with ifdef. (Bug#1383) diff -r c0f837f2c14b -r 33b7fbb60fa0 src/xfaces.c --- a/src/xfaces.c Wed Nov 26 02:58:48 2008 +0000 +++ b/src/xfaces.c Wed Nov 26 02:59:54 2008 +0000 @@ -1839,7 +1839,11 @@ (frame) Lisp_Object frame; { +#ifdef MSDOS + return Fcons (Fcons (build_string ("default"), Qt), Qnil); +#else return Ffont_family_list (frame); +#endif }