]> git.wh0rd.org Git - nano.git/commitdiff
comment fixes
authorDavid Lawrence Ramsey <pooka109@gmail.com>
Mon, 24 Apr 2006 19:44:04 +0000 (19:44 +0000)
committerDavid Lawrence Ramsey <pooka109@gmail.com>
Mon, 24 Apr 2006 19:44:04 +0000 (19:44 +0000)
git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@3422 35c25a1d-7b9e-4130-9fde-d3aeb78583b8

src/cut.c
src/move.c

index 39c62d476ec818c0037d1b7ad2117c73de6a270c..f5a460ac7d25877fe59e71a3a8bceb65801bf4e0 100644 (file)
--- a/src/cut.c
+++ b/src/cut.c
@@ -3,7 +3,7 @@
  *   cut.c                                                                *
  *                                                                        *
  *   Copyright (C) 1999-2004 Chris Allegretta                             *
- *   Copyright (C) 2005 David Lawrence Ramsey                             *
+ *   Copyright (C) 2005-2006 David Lawrence Ramsey                        *
  *   This program is free software; you can redistribute it and/or modify *
  *   it under the terms of the GNU General Public License as published by *
  *   the Free Software Foundation; either version 2, or (at your option)  *
@@ -38,7 +38,7 @@ void cutbuffer_reset(void)
     keep_cutbuffer = FALSE;
 }
 
-/* If we're not on the last line of the file, move all the text of the
+/* If we aren't on the last line of the file, move all the text of the
  * current line, plus the newline at the end, to the cutbuffer.  If we
  * are, 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
@@ -69,11 +69,11 @@ void cut_marked(void)
     openfile->placewewant = xplustabs();
 }
 
-/* If we're not at the end of the current line, move all the text from
- * the current cursor position to the end of the current line,
- * not counting the newline at the end, to the cutbuffer.  If we are,
- * and we're not on the last line of the file, move the newline at the
- * end to the cutbuffer, and set the current place we want to where the
+/* If we aren't at the end of the current line, move all the text from
+ * the current cursor position to the end of the current line, not
+ * counting the newline at the end, to the cutbuffer.  If we are, and
+ * we're not on the last line of the file, move the newline at the end
+ * to the cutbuffer, and set the current place we want to where the
  * newline used to be. */
 void cut_to_eol(void)
 {
index 0fd84a1a5d893c99e70ae86093acdcf0891128d1..ae725a68f342c9ead38c6ab1c223b573e72e6552 100644 (file)
@@ -3,7 +3,7 @@
  *   move.c                                                               *
  *                                                                        *
  *   Copyright (C) 1999-2004 Chris Allegretta                             *
- *   Copyright (C) 2005 David Lawrence Ramsey                             *
+ *   Copyright (C) 2005-2006 David Lawrence Ramsey                        *
  *   This program is free software; you can redistribute it and/or modify *
  *   it under the terms of the GNU General Public License as published by *
  *   the Free Software Foundation; either version 2, or (at your option)  *
@@ -454,7 +454,7 @@ void do_prev_word_void(void)
 
 /* Move to the beginning of the current line.  If the SMART_HOME flag is
  * set, move to the first non-whitespace character of the current line
- * if we're not already there, or to the beginning of the current line
+ * if we aren't already there, or to the beginning of the current line
  * if we are. */
 void do_home(void)
 {