diff --git a/ChangeLog b/ChangeLog index 0705f49e43b1405c605bcd768375d9832be2271f..ce8af2045dfa8aee15f87d3fdb626acc7682db8d 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,4 +1,6 @@ CVS code - +- General: + - Miscellaneous comment fixes. (DLR) GNU nano 1.3.10 - 2005.12.23 - General: diff --git a/src/utils.c b/src/utils.c index 043371290df20021892c0c49bdf8dad35687c783..f8f4d8a76786ee7416ce1fd861e2ab916d336bab 100644 --- a/src/utils.c +++ b/src/utils.c @@ -81,9 +81,9 @@ 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). On error, we - * return FALSE. Otherwise, we return TRUE. */ +/* Read two ssize_t's, separated by a comma, from str, and store them in + * *line and *column (if they're not both NULL). Return FALSE on error, + * or TRUE otherwise. */ bool parse_line_column(const char *str, ssize_t *line, ssize_t *column) { bool retval = TRUE;