nano

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

commit 2bf7e975ebafa95ffd7f6e4d26537c2b77b35225
parent ba48aa974311754b2890f320e64303f303a1b0de
Author: David Lawrence Ramsey <pooka109@gmail.com>
Date:   Tue,  7 Nov 2006 22:56:25 +0000

yet more cosmetic fixes


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

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

diff --git a/src/files.c b/src/files.c @@ -1876,17 +1876,17 @@ int do_writeout(bool exiting) * to save a new file under the name of an existing * file. In this case, show a "File exists" * error. */ - if (!ISSET(RESTRICTED)) { - i = do_yesno_prompt(FALSE, - _("File exists, OVERWRITE ? ")); - if (i == 0 || i == -1) - continue; - } else { + if (ISSET(RESTRICTED)) { errno = EEXIST; statusbar(_("Error writing %s: %s"), answer, strerror(errno)); retval = -1; break; + } else { + i = do_yesno_prompt(FALSE, + _("File exists, OVERWRITE ? ")); + if (i == 0 || i == -1) + continue; } /* If we're using restricted mode, we aren't allowed to * change the name of a file once it has one, because