tweaks: don't bother trimming the final newline from a position item
It is irrelevant -- the line is discarded as soon as the data has been extracted.master
parent
cb3fc8892a
commit
f915a28d30
|
@ -3191,8 +3191,7 @@ void load_poshistory(void)
|
|||
|
||||
/* Read and parse each line, and store the extracted data. */
|
||||
while ((read = getline(&line, &buf_len, hist)) > 2) {
|
||||
if (line[read - 1] == '\n')
|
||||
line[--read] = '\0';
|
||||
/* Decode nulls as newlines. */
|
||||
unsunder(line, read);
|
||||
|
||||
lineptr = parse_next_word(line);
|
||||
|
|
Loading…
Reference in New Issue