nano

nano with my custom patches
git clone git://bsandro.tech/nano
Log | Files | Refs | README | LICENSE

commit 1e7f1ea1e8768392f6e41d83125c086ed93e963a
parent 6420d445c2c8dc0baa8159c2ad6bcc9f17ee6e4a
Author: David Lawrence Ramsey <pooka109@gmail.com>
Date:   Thu, 12 Aug 2004 02:11:35 +0000

indentation fix


git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@1891 35c25a1d-7b9e-4130-9fde-d3aeb78583b8

Diffstat:
Msrc/files.c | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/files.c b/src/files.c @@ -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);