Commit ef45a252 authored by David Lawrence Ramsey's avatar David Lawrence Ramsey
Browse files

add missing comments

git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@3697 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
parent 727c244a
Showing with 3 additions and 0 deletions
+3 -0
CVS code - CVS code -
- General: - General:
- Miscellaneous comment fixes. (DLR)
- Fix option descriptions. At least one of the two parts of - Fix option descriptions. At least one of the two parts of
+LINE,COLUMN must be specified at all times; COLUMN is not the +LINE,COLUMN must be specified at all times; COLUMN is not the
only optional value. Also fix a wording problem in only optional value. Also fix a wording problem in
......
...@@ -912,11 +912,13 @@ void do_fileresearch(void) ...@@ -912,11 +912,13 @@ void do_fileresearch(void)
filesearch_abort(); filesearch_abort();
} }
/* Select the first file in the list. */
void do_first_file(void) void do_first_file(void)
{ {
selected = 0; selected = 0;
} }
/* Select the last file in the list. */
void do_last_file(void) void do_last_file(void)
{ {
selected = filelist_len - 1; selected = filelist_len - 1;
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment