Fix saving of XBoard fonts with spaces in name
authorH.G. Muller <h.g.muller@hccnet.nl>
Tue, 12 Apr 2011 08:13:40 +0000 (10:13 +0200)
committerArun Persaud <apersaud@lbl.gov>
Wed, 13 Apr 2011 02:00:30 +0000 (19:00 -0700)
SaveFontArg now prints quotes around the saved font string, so that the
general option-argument parser doesnot stop at the first space it sees.

xboard.c

index 452255e..d216fe8 100644 (file)
--- a/xboard.c
+++ b/xboard.c
@@ -1509,7 +1509,7 @@ SaveFontArg(FILE *f, ArgDescriptor *ad)
        break;
   }
   for(i=0; i<MAX_SIZE; i++) if(fontValid[n][i]) // [HGM] font: store all standard fonts
-    fprintf(f, OPTCHAR "%s" SEPCHAR "size%d:%s\n", ad->argName, i, fontTable[n][i]);
+    fprintf(f, OPTCHAR "%s" SEPCHAR "\"size%d:%s\"\n", ad->argName, i, fontTable[n][i]);
 }
 
 void
@@ -3062,7 +3062,6 @@ FindFont(pattern, targetPxlSize)
     char *def_string, *base_fnt_lst, strInt[3];
     XFontSet fntSet;
     XFontStruct **fnt_list;
-
     base_fnt_lst = calloc(1, strlen(pattern) + 3);
     snprintf(strInt, sizeof(strInt)/sizeof(strInt[0]), "%d", targetPxlSize);
     p = strstr(pattern, "--");