]> git.wh0rd.org Git - nano.git/commitdiff
cosmetic fixes
authorDavid Lawrence Ramsey <pooka109@gmail.com>
Fri, 30 Jun 2006 07:27:15 +0000 (07:27 +0000)
committerDavid Lawrence Ramsey <pooka109@gmail.com>
Fri, 30 Jun 2006 07:27:15 +0000 (07:27 +0000)
git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@3702 35c25a1d-7b9e-4130-9fde-d3aeb78583b8

ChangeLog
src/browser.c

index 94ab5ded30c131846132acb9011951c7249d22fc..5c33f2d513f47551fae86e9070bdcf840f8bc78a 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -11,8 +11,8 @@ CVS code -
          enable_mouse_support() and get_mouseinput(). (DLR)
 - browser.c:
   do_browser()
-       - Refactor and simplify the mouse support, modeling it after
-         do_mouse() for consistency. (DLR)
+       - Refactor the mouse support, modeling it after do_mouse() for
+         consistency. (DLR)
        - Remove unneeded call to blank_edit(). (DLR)
        - After entering "..", select the directory we were in before
          instead of the first filename in the list, as Pico does. (DLR)
index f9e4897505d749f692b99f4f8bd3542a020073fc..7de12d6cf2d8c6d57784c83c75d12a6022c9e84b 100644 (file)
@@ -82,7 +82,7 @@ char *do_browser(char *path, DIR *dir)
     /* Assume that path exists and ends with a slash. */
     assert(path != NULL && path[strlen(path) - 1] == '/');
 
-    /* Get the list of files. */
+    /* Get the file list. */
     browser_init(path, dir);
 
     assert(filelist != NULL);