summaryrefslogtreecommitdiffstats
path: root/save-xml.c
diff options
context:
space:
mode:
Diffstat (limited to 'save-xml.c')
-rw-r--r--save-xml.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/save-xml.c b/save-xml.c
index 5b0ef42ec..d16b16daf 100644
--- a/save-xml.c
+++ b/save-xml.c
@@ -406,9 +406,9 @@ static void save_tags(FILE *f, struct tag_entry *tag_list)
fprintf(f, ", ");
/* If the tag has been translated, write the source to the xml file */
if (tmp->tag->source != NULL)
- fprintf(f, "%s", tmp->tag->source);
+ quote(f, tmp->tag->source, 0);
else
- fprintf(f, "%s", tmp->tag->name);
+ quote(f, tmp->tag->name, 0);
tmp = tmp->next;
more = 1;
}