# HG changeset patch # User YAMAMOTO Mitsuharu # Date 1112754263 0 # Node ID 1f9e7993e18ea947e6d8a2849d45c715b36aeba5 # Parent b44917251d3a7343818db3339fa905d3a15edf7c (Fx_create_frame, x_create_tip_frame): Add "fontset-mac" to fallback font/fontsets. diff -r b44917251d3a -r 1f9e7993e18e src/macfns.c --- a/src/macfns.c Wed Apr 06 02:23:37 2005 +0000 +++ b/src/macfns.c Wed Apr 06 02:24:23 2005 +0000 @@ -2632,6 +2632,8 @@ font = x_new_font (f, "-ETL-fixed-medium-r-*--*-160-*-*-*-*-iso8859-1"); /* If those didn't work, look for something which will at least work. */ if (! STRINGP (font)) + font = x_new_fontset (f, "fontset-mac"); + if (! STRINGP (font)) font = x_new_font (f, "-*-monaco-*-12-*-mac-roman"); if (! STRINGP (font)) font = x_new_font (f, "-*-courier-*-10-*-mac-roman"); @@ -3732,6 +3734,8 @@ font = x_new_font (f, "-ETL-fixed-medium-r-*--*-160-*-*-*-*-iso8859-1"); /* If those didn't work, look for something which will at least work. */ if (! STRINGP (font)) + font = x_new_fontset (f, "fontset-mac"); + if (! STRINGP (font)) font = x_new_font (f, "-*-monaco-*-12-*-mac-roman"); if (! STRINGP (font)) font = x_new_font (f, "-*-courier-*-10-*-mac-roman");