diff options
Diffstat (limited to 'contents.c')
| -rw-r--r-- | contents.c | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -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; } |