nano

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

commit 3d8d29d08a9ad128e2485a482bf64f9103472065
parent fc8e5cb0f250e2bfcd69e1ca346a9d559089211d
Author: David Lawrence Ramsey <pooka109@gmail.com>
Date:   Tue,  7 Feb 2006 18:35:26 +0000

another formatting fix


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

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

diff --git a/src/files.c b/src/files.c @@ -2006,8 +2006,8 @@ char **username_tab_completion(const char *buf, size_t *num_matches, continue; #endif - matches = (char **)nrealloc(matches, - (*num_matches + 1) * sizeof(char *)); + matches = (char **)nrealloc(matches, (*num_matches + 1) * + sizeof(char *)); matches[*num_matches] = charalloc(strlen(userdata->pw_name) + 2); sprintf(matches[*num_matches], "~%s", userdata->pw_name);