nano

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

commit 2f0cd353228e77f494cb851f7870a3b96f5619d6
parent b68c01b7533f733c6ebf57f67568594b8c08b1e3
Author: David Lawrence Ramsey <pooka109@gmail.com>
Date:   Mon, 16 May 2005 23:33:53 +0000

add missing comment


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

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

diff --git a/src/utils.c b/src/utils.c @@ -105,6 +105,8 @@ bool parse_num(const char *str, ssize_t *val) return TRUE; } +/* Read an int and a ssize_t, separated by a comma, from str, and store + * them in *line and *column (if they're not both NULL). */ void parse_line_column(const char *str, int *line, ssize_t *column) { char *comma;