nano

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

commit 21119126d0a3b9c98b18d73527bb5fcf96f66493
parent 3468784b85048e673bbca56a5868987e101591e5
Author: David Lawrence Ramsey <pooka109@gmail.com>
Date:   Sat, 21 Apr 2007 20:24:16 +0000

revert erroneous change


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

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

diff --git a/src/files.c b/src/files.c @@ -1908,11 +1908,12 @@ bool do_writeout(bool exiting) full_filename = get_full_path(openfile->filename); name_exists = (stat((full_answer == NULL) ? answer : full_answer, &st) != -1); - do_warning = (name_exists || - (openfile->filename[0] != '\0' && - strcmp((full_answer == NULL) ? answer : - full_answer, (full_filename == NULL) ? - openfile->filename : full_filename) != 0)); + if (openfile->filename[0] == '\0') + do_warning = name_exists; + else + do_warning = (strcmp((full_answer == NULL) ? + answer : full_answer, (full_filename == NULL) ? + openfile->filename : full_filename) != 0); /* Convert nulls to newlines. answer_len is the * string's real length. */