]> git.wh0rd.org Git - nano.git/commitdiff
comment fix
authorDavid Lawrence Ramsey <pooka109@gmail.com>
Wed, 9 Nov 2005 00:25:30 +0000 (00:25 +0000)
committerDavid Lawrence Ramsey <pooka109@gmail.com>
Wed, 9 Nov 2005 00:25:30 +0000 (00:25 +0000)
git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@3117 35c25a1d-7b9e-4130-9fde-d3aeb78583b8

src/cut.c

index 82c71e44d681c97801bc9dcbd23da6801a3bd786..111d842cca98c00d4333ae1d8bc872f024eb7754 100644 (file)
--- a/src/cut.c
+++ b/src/cut.c
@@ -39,11 +39,10 @@ void cutbuffer_reset(void)
 }
 
 /* If we're not on the last line of the file, move all the text of the
- * current line, plus the newline at the end, to the cutbuffer, and set
- * the current place we want to the beginning of the now-nonexistent
- * line.  If we are, and the last line of the file isn't blank, move all
- * of the text of the current line to the cutbuffer, and set the current
- * place we want to the beginning of the now-blank line. */
+ * current line, plus the newline at the end, to the cutbuffer.  If we
+ * are, and the last line of the file isn't blank, move all of the text
+ * of the current line to the cutbuffer.  In both cases, set the current
+ * place we want to the beginning of the current line. */
 void cut_line(void)
 {
     size_t data_len = strlen(openfile->current->data);