indentation fix

git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@1891 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
master
David Lawrence Ramsey 2004-08-12 02:11:35 +00:00
parent 6420d445c2
commit 1e7f1ea1e8
1 changed files with 2 additions and 2 deletions

View File

@ -3006,8 +3006,8 @@ void save_history(void)
}
}
if (fputs("\n", hist) == EOF) {
rcfile_error(N_("Error writing %s: %s"), nanohist, strerror(errno));
goto come_from;
rcfile_error(N_("Error writing %s: %s"), nanohist, strerror(errno));
goto come_from;
}
for (h = replace_history.tail; h->prev; h = h->prev) {
h->data = charealloc(h->data, strlen(h->data) + 2);