don't eat part of output

This commit is contained in:
Jorge Morante 2019-01-14 08:35:14 +01:00
parent 79c0398908
commit c9e9b8d941
1 changed files with 5 additions and 6 deletions

View File

@ -59,16 +59,15 @@ BEGIN {
line = post_match;
}
if (length(post_match) > 0) {
tokens_by_line[n_lines][n_tokens]["value"] = post_match
tokens_by_line[n_lines][n_tokens]["type"] = "text"
n_tokens++
}
if (n_tokens == 0) {
tokens_by_line[n_lines][n_tokens]["value"] = line
tokens_by_line[n_lines][n_tokens]["type"] = "text"
} else if (length(post_match) > 0) {
tokens_by_line[n_lines][n_tokens]["value"] = post_match
tokens_by_line[n_lines][n_tokens]["type"] = "text"
n_tokens++
}
n_lines++