]> git.wh0rd.org Git - nano.git/commitdiff
still more comment fixes
authorDavid Lawrence Ramsey <pooka109@gmail.com>
Mon, 27 Nov 2006 05:25:48 +0000 (05:25 +0000)
committerDavid Lawrence Ramsey <pooka109@gmail.com>
Mon, 27 Nov 2006 05:25:48 +0000 (05:25 +0000)
git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@3978 35c25a1d-7b9e-4130-9fde-d3aeb78583b8

src/files.c

index 14da751b1ceb2e2dba1fa7d6ba2d4561fa917689..a7710838e341134c0b23a88279861e397fa5d591 100644 (file)
@@ -132,8 +132,8 @@ void open_buffer(const char *filename)
     if (new_buffer)
        make_new_buffer();
 
-    /* If we have a file and we're loading into a new buffer, update the
-     * filename. */
+    /* If we have a file, and we're loading into a new buffer, update
+     * the filename. */
     if (rc != -1 && new_buffer)
        openfile->filename = mallocstrcpy(openfile->filename, filename);
 
@@ -150,7 +150,7 @@ void open_buffer(const char *filename)
 #endif
     }
 
-    /* If we have a file and we're loading into a new buffer, move back
+    /* If we have a file, and we're loading into a new buffer, move back
      * to the beginning of the first line of the buffer. */
     if (rc != -1 && new_buffer) {
        openfile->current = openfile->fileage;