]> git.wh0rd.org Git - nano.git/commitdiff
more comment fixes
authorDavid Lawrence Ramsey <pooka109@gmail.com>
Sun, 29 Oct 2006 21:14:53 +0000 (21:14 +0000)
committerDavid Lawrence Ramsey <pooka109@gmail.com>
Sun, 29 Oct 2006 21:14:53 +0000 (21:14 +0000)
git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@3926 35c25a1d-7b9e-4130-9fde-d3aeb78583b8

src/rcfile.c
src/utils.c
src/winio.c

index 7507f13eb6623fef28a0fa01500a06675faa0a75..58d8dff07fa5fb32193659594c8d98cc750d6c45 100644 (file)
@@ -204,7 +204,7 @@ char *parse_next_regex(char *ptr)
        return NULL;
     }
 
-    /* Null terminate and advance ptr. */
+    /* Null-terminate and advance ptr. */
     *ptr++ = '\0';
 
     while (isblank(*ptr))
index 6c16b9e4ab76697903846b40446e57fc9d2a87d7..1df715e7f638829d7cae29eb2b868a6cc109640d 100644 (file)
@@ -232,7 +232,7 @@ ssize_t ngetdelim(char **lineptr, size_t *n, int delim, FILE *stream)
        *n += MAX_BUF_SIZE;
     }
 
-    /* Null terminate the buffer. */
+    /* Null-terminate the buffer. */
     null_at(lineptr, indx++);
     *n = indx;
 
index 3b08b70242fa48ca450ee39040bd8dccc40a33d8..85961ff0988a38513f0567eb66f301d3d63ceb91 100644 (file)
@@ -1974,7 +1974,7 @@ char *display_string(const char *buf, size_t start_col, size_t len, bool
 
     assert(alloc_len >= index + 1);
 
-    /* Null terminate converted. */
+    /* Null-terminate converted. */
     converted[index] = '\0';
 
     /* Make sure converted takes up no more than len columns. */