]> git.wh0rd.org Git - nano.git/commitdiff
add missing comments
authorDavid Lawrence Ramsey <pooka109@gmail.com>
Fri, 30 Jun 2006 05:12:53 +0000 (05:12 +0000)
committerDavid Lawrence Ramsey <pooka109@gmail.com>
Fri, 30 Jun 2006 05:12:53 +0000 (05:12 +0000)
git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@3697 35c25a1d-7b9e-4130-9fde-d3aeb78583b8

ChangeLog
src/browser.c

index 43413023002a51ae1ca1ebc0e734a5d2cbf3dc6c..280f50f195ca16224cf1273924afcdd0f9c32355 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,6 @@
 CVS code -
 - General:
+       - Miscellaneous comment fixes. (DLR)
        - Fix option descriptions.  At least one of the two parts of
          +LINE,COLUMN must be specified at all times; COLUMN is not the
          only optional value.  Also fix a wording problem in
index 9fd52cedc6476aaddbb9a3cea80f6e92171fc3f5..7230a122f2ea5ca3d25048ef84266d25368b8b66 100644 (file)
@@ -912,11 +912,13 @@ void do_fileresearch(void)
     filesearch_abort();
 }
 
+/* Select the first file in the list. */
 void do_first_file(void)
 {
     selected = 0;
 }
 
+/* Select the last file in the list. */
 void do_last_file(void)
 {
     selected = filelist_len - 1;