# HG changeset patch # User Matti Hamalainen # Date 1273668003 0 # Node ID e8d728edb54aa2b7dc0b1bb65d29ffc97f7cb294 # Parent 41997fd4e0eda0654136b5c42a63483c8800944c Set link targets in GMapsXML output to "_blank" to open them in separate windows/tabs. diff -r 41997fd4e0ed -r e8d728edb54a mkloc.c --- a/mkloc.c Wed May 05 00:46:10 2010 +0000 +++ b/mkloc.c Wed May 12 12:40:03 2010 +0000 @@ -1563,7 +1563,7 @@ fprinte(outFile, str); fprintf(outFile, "\" html=\""); if (tmp->uri != NULL) - fprintfe(outFile, "%s
", tmp->uri, str); + fprintfe(outFile, "%s
", tmp->uri, str); else fprintfe(outFile, "%s
", str); @@ -1596,7 +1596,7 @@ } else { fprinte(outFile, "Coders: "); for (n = 0; n < tmp->ncoders; n++) { - fprintfe(outFile, "%s", + fprintfe(outFile, "%s", tmp->coders[n], tmp->coders[n]); if (n < tmp->ncoders - 1) fprinte(outFile, ", ");