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.
This commit is contained in:
@@ -3191,8 +3191,7 @@ void load_poshistory(void)
|
|||||||
|
|
||||||
/* Read and parse each line, and store the extracted data. */
|
/* Read and parse each line, and store the extracted data. */
|
||||||
while ((read = getline(&line, &buf_len, hist)) > 2) {
|
while ((read = getline(&line, &buf_len, hist)) > 2) {
|
||||||
if (line[read - 1] == '\n')
|
/* Decode nulls as newlines. */
|
||||||
line[--read] = '\0';
|
|
||||||
unsunder(line, read);
|
unsunder(line, read);
|
||||||
|
|
||||||
lineptr = parse_next_word(line);
|
lineptr = parse_next_word(line);
|
||||||
|
|||||||
Reference in New Issue
Block a user