nano

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

commit 360191c4343ec38ca2b325b01638a5eca348e9cb
parent ca744153fd8cc75eb4ee3e1d481415dbcff9533a
Author: David Lawrence Ramsey <pooka109@gmail.com>
Date:   Fri,  1 Oct 2004 21:37:36 +0000

consistency fix


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

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

diff --git a/src/files.c b/src/files.c @@ -1776,10 +1776,10 @@ int do_writeout(int exiting) char *ans = mallocstrcpy(NULL, answer); const char *formatstr, *backupstr; - if (ISSET(MAC_FILE)) - formatstr = N_(" [Mac Format]"); - else if (ISSET(DOS_FILE)) + if (ISSET(DOS_FILE)) formatstr = N_(" [DOS Format]"); + else if (ISSET(MAC_FILE)) + formatstr = N_(" [Mac Format]"); else formatstr = "";