summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--utils/newparser/handle_tags.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/utils/newparser/handle_tags.c b/utils/newparser/handle_tags.c
index 28c4548549..c7c1289183 100644
--- a/utils/newparser/handle_tags.c
+++ b/utils/newparser/handle_tags.c
@@ -132,10 +132,10 @@ int handle_tree(struct skin *skin, struct skin_element* tree, struct line *line)
132 if (element->tag && next->type == LINE && 132 if (element->tag && next->type == LINE &&
133 element->line == next->line) 133 element->line == next->line)
134 { 134 {
135 struct line *line = (struct line*)skin_alloc(sizeof(struct line)); 135 struct line *newline = (struct line*)skin_alloc(sizeof(struct line));
136 line->update_mode = 0; 136 newline->update_mode = 0;
137 line->eat_line_ending = true; 137 newline->eat_line_ending = true;
138 next->data = line; 138 next->data = newline;
139 } 139 }
140 } 140 }
141 else if (element->type == LINE && !element->data) 141 else if (element->type == LINE && !element->data)