nano

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

commit 6a715b69a7af0f83c404473cf62dd958098fd772
parent ca92becf9dda2b0dcebb60d32f9a9d4a35f9500c
Author: David Lawrence Ramsey <pooka109@gmail.com>
Date:   Fri, 22 Oct 2004 16:11:55 +0000

comment fix


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

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

diff --git a/src/utils.c b/src/utils.c @@ -83,9 +83,9 @@ int num_of_digits(int n) return i; } -/* Read an int from str, and store it in *val (if val is not NULL). On - * error, we return FALSE and don't change *val. Otherwise, we return - * TRUE. */ +/* Read a ssize_t from str, and store it in *val (if val is not NULL). + * On error, we return FALSE and don't change *val. Otherwise, we + * return TRUE. */ bool parse_num(const char *str, ssize_t *val) { char *first_error;