nano

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

commit 11846fa57692e8e511876bea45ee16b4a1af7bda
parent 32fe95d35eff7f72053a7eee99ea76b3d4c312c2
Author: David Lawrence Ramsey <pooka109@gmail.com>
Date:   Fri, 27 May 2005 03:52:21 +0000

bool fix


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

Diffstat:
Msrc/files.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/files.c b/src/files.c @@ -2156,7 +2156,7 @@ char *input_tab(char *buf, size_t *place, bool *lastwastab, bool *list) assert(buf != NULL && place != NULL && *place <= strlen(buf) && lastwastab != NULL && list != NULL); - *list = 0; + *list = FALSE; /* If the word starts with `~' and there is no slash in the word, * then try completing this word as a username. */