mirror of
git://git.sv.gnu.org/nano.git
synced 2025-01-20 08:19:19 +03:00
history: don't bother encoding search items -- they cannot contain newlines
This commit is contained in:
parent
f915a28d30
commit
8b483c10ba
@ -2966,7 +2966,6 @@ void load_history(void)
|
||||
if (read > 0 && line[read - 1] == '\n')
|
||||
line[--read] = '\0';
|
||||
if (read > 0) {
|
||||
unsunder(line, read);
|
||||
update_history(history, line);
|
||||
} else
|
||||
history = &replace_history;
|
||||
@ -2992,8 +2991,6 @@ bool writehist(FILE *hist, filestruct *h)
|
||||
for (p = h; p != NULL; p = p->next) {
|
||||
size_t p_len = strlen(p->data);
|
||||
|
||||
sunder(p->data);
|
||||
|
||||
if (fwrite(p->data, sizeof(char), p_len, hist) < p_len ||
|
||||
putc('\n', hist) == EOF)
|
||||
return FALSE;
|
||||
|
Loading…
Reference in New Issue
Block a user