per Mike Frysinger's patch, have whitespace display default to off
instead of on git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@1831 35c25a1d-7b9e-4130-9fde-d3aeb78583b8master
parent
a539fce4ad
commit
db357a1ece
|
@ -3,6 +3,10 @@ CVS code -
|
||||||
shortcut_init()
|
shortcut_init()
|
||||||
- Fix erroneous #ifdef so that nano compiles with
|
- Fix erroneous #ifdef so that nano compiles with
|
||||||
--disable-justify again. (DLR; found by Mike Frysinger)
|
--disable-justify again. (DLR; found by Mike Frysinger)
|
||||||
|
- rcfile.c:
|
||||||
|
parse_rcfile()
|
||||||
|
- Have whitespace display default to off instead of on. (Mike
|
||||||
|
Frysinger)
|
||||||
|
|
||||||
GNU nano 1.3.3 - 2004.06.28
|
GNU nano 1.3.3 - 2004.06.28
|
||||||
- General:
|
- General:
|
||||||
|
|
|
@ -605,8 +605,7 @@ void parse_rcfile(FILE *rcstream)
|
||||||
rcfile_error(_("Two non-control characters required"));
|
rcfile_error(_("Two non-control characters required"));
|
||||||
free(whitespace);
|
free(whitespace);
|
||||||
whitespace = NULL;
|
whitespace = NULL;
|
||||||
} else
|
}
|
||||||
SET(WHITESPACE_DISPLAY);
|
|
||||||
} else
|
} else
|
||||||
#endif
|
#endif
|
||||||
#ifndef DISABLE_JUSTIFY
|
#ifndef DISABLE_JUSTIFY
|
||||||
|
|
Loading…
Reference in New Issue