summaryrefslogtreecommitdiff
path: root/contents.c
diff options
context:
space:
mode:
Diffstat (limited to 'contents.c')
-rw-r--r--contents.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/contents.c b/contents.c
index 1649212..e8b1afc 100644
--- a/contents.c
+++ b/contents.c
@@ -53,6 +53,8 @@ static void dotext(word ***wret, wchar_t *text) {
mnewword->type = word_Normal;
mnewword->alt = NULL;
mnewword->next = NULL;
+ mnewword->breaks = FALSE;
+ mnewword->aux = 0;
**wret = mnewword;
*wret = &mnewword->next;
}
@@ -63,6 +65,8 @@ static void dospace(word ***wret) {
mnewword->type = word_WhiteSpace;
mnewword->alt = NULL;
mnewword->next = NULL;
+ mnewword->breaks = FALSE;
+ mnewword->aux = 0;
**wret = mnewword;
*wret = &mnewword->next;
}