commit 6ad82142c0f1d1a1590ac110f107d24b1359ac60
parent 0e48bc18be33d622622b5b19f031ab7546e97d5e
Author: David Lawrence Ramsey <pooka109@gmail.com>
Date: Mon, 27 Nov 2006 05:25:48 +0000
still more comment fixes
git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@3978 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
Diffstat:
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/src/files.c b/src/files.c
@@ -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;