# HG changeset patch # User YAMAMOTO Mitsuharu # Date 1114145771 0 # Node ID 290e7282ab7bd8d65fe7bdce6075f94060f93782 # Parent 4eded3eec51214bf68f7ed9a7f9bc657a98acc6f (Fx_create_frame, x_create_tip_frame): Pass Lisp string as the second argument for x_new_fontset. diff -r 4eded3eec512 -r 290e7282ab7b src/macfns.c --- a/src/macfns.c Fri Apr 22 04:18:42 2005 +0000 +++ b/src/macfns.c Fri Apr 22 04:56:11 2005 +0000 @@ -2632,7 +2632,7 @@ 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"); + font = x_new_fontset (f, build_string ("fontset-mac")); if (! STRINGP (font)) font = x_new_font (f, "-*-monaco-*-12-*-mac-roman"); if (! STRINGP (font)) @@ -3730,7 +3730,7 @@ 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"); + font = x_new_fontset (f, build_string ("fontset-mac")); if (! STRINGP (font)) font = x_new_font (f, "-*-monaco-*-12-*-mac-roman"); if (! STRINGP (font))