history: don't bother encoding search items -- they cannot contain newlines
Этот коммит содержится в:
родитель
f915a28d30
Коммит
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;
|
||||
|
Загрузка…
x
Ссылка в новой задаче
Block a user