Commit 1e73bcfe authored by David Lawrence Ramsey's avatar David Lawrence Ramsey
Browse files

fix inaccurate comment

git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@3249 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
parent da959919
Showing with 5 additions and 3 deletions
+5 -3
CVS code - CVS code -
- General:
- Miscellaneous comment fixes. (DLR)
GNU nano 1.3.10 - 2005.12.23 GNU nano 1.3.10 - 2005.12.23
- General: - General:
......
...@@ -81,9 +81,9 @@ bool parse_num(const char *str, ssize_t *val) ...@@ -81,9 +81,9 @@ bool parse_num(const char *str, ssize_t *val)
return TRUE; return TRUE;
} }
/* Read an int and a ssize_t, separated by a comma, from str, and store /* Read two ssize_t's, separated by a comma, from str, and store them in
* them in *line and *column (if they're not both NULL). On error, we * *line and *column (if they're not both NULL). Return FALSE on error,
* return FALSE. Otherwise, we return TRUE. */ * or TRUE otherwise. */
bool parse_line_column(const char *str, ssize_t *line, ssize_t *column) bool parse_line_column(const char *str, ssize_t *line, ssize_t *column)
{ {
bool retval = TRUE; bool retval = TRUE;
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment