locale independent printing for doubles when they are part of an abstract expression

This commit is contained in:
krasimir
2016-04-13 14:30:40 +00:00
parent c0344e936a
commit e8e52de6b9
3 changed files with 27 additions and 1 deletions

View File

@@ -1189,7 +1189,7 @@ pgf_print_literal(PgfLiteral lit,
}
case PGF_LITERAL_FLT: {
PgfLiteralFlt* lit = ei.data;
gu_printf(out, err, "%lg", lit->val);
gu_double_to_string(lit->val, out, err);
break;
}
default: