From 1e73bcfe291ef15b18f57cdba159f1ba349b545b Mon Sep 17 00:00:00 2001
From: David Lawrence Ramsey <pooka109@gmail.com>
Date: Fri, 23 Dec 2005 20:18:06 +0000
Subject: [PATCH] fix inaccurate comment

git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@3249 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
---
 ChangeLog   | 2 ++
 src/utils.c | 6 +++---
 2 files changed, 5 insertions(+), 3 deletions(-)

diff --git a/ChangeLog b/ChangeLog
index 0705f49e..ce8af204 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 04337129..f8f4d8a7 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;
-- 
GitLab