From ef45a2528cab3312c5887dcc0ef82f79f4ffe8b6 Mon Sep 17 00:00:00 2001
From: David Lawrence Ramsey <pooka109@gmail.com>
Date: Fri, 30 Jun 2006 05:12:53 +0000
Subject: [PATCH] add missing comments

git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@3697 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
---
 ChangeLog     | 1 +
 src/browser.c | 2 ++
 2 files changed, 3 insertions(+)

diff --git a/ChangeLog b/ChangeLog
index 43413023..280f50f1 100644
--- 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
diff --git a/src/browser.c b/src/browser.c
index 9fd52ced..7230a122 100644
--- a/src/browser.c
+++ b/src/browser.c
@@ -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;
-- 
GitLab