]> git.wh0rd.org Git - nano.git/commitdiff
rename browser_draw() to browser_refresh() for consistency
authorDavid Lawrence Ramsey <pooka109@gmail.com>
Fri, 10 Feb 2006 19:02:30 +0000 (19:02 +0000)
committerDavid Lawrence Ramsey <pooka109@gmail.com>
Fri, 10 Feb 2006 19:02:30 +0000 (19:02 +0000)
git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@3295 35c25a1d-7b9e-4130-9fde-d3aeb78583b8

ChangeLog
src/browser.c
src/proto.h

index c9e5afe516b872d7b334afa4e4c923cfb5e7fac6..3c9463c6715b379912afb8314f02e91c42eef74e 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -23,7 +23,7 @@ CVS code -
          get_prompt_string(), do_prompt(), search_init(), do_replace(),
          do_gotolinecolumn(), and do_int_spell_fix. (DLR)
        - Move the browser drawing routines to a separate function.  New
-         function browser_draw(); changes to do_browser(). (DLR)
+         function browser_refresh(); changes to do_browser(). (DLR)
 - browser.c:
   do_browser()
        - Properly set currshortcut back to the file browser shortcut
index ff8c8b30e56c4e0a63b0c0457de970b91371b78c..a493506c8df6d8117d49489fa98c391ac288e04d 100644 (file)
@@ -324,7 +324,7 @@ char *do_browser(char *path, DIR *dir)
        if (abort)
            break;
 
-       browser_draw(&width, longest, selected, filelist, numents);
+       browser_refresh(&width, longest, selected, filelist, numents);
 
        kbinput = get_kbinput(edit, &meta_key, &func_key);
        parse_browser_input(&kbinput, &meta_key, &func_key);
@@ -504,7 +504,7 @@ void parse_browser_input(int *kbinput, bool *meta_key, bool *func_key)
  * calculate and return.  longest is the length of the longest filename,
  * and hence the width of each column of the list.  selected is the
  * filename that is currently selected. */
-void browser_draw(int *width, int longest, int selected, char
+void browser_refresh(int *width, int longest, int selected, char
        **filelist, size_t numents)
 {
     struct stat st;
index f7db9540145113e338f3daa4b9ff778e721b2837..08a998f592d6e54e84a2d4d0eb63c28ba0a7f191 100644 (file)
@@ -142,7 +142,7 @@ char **browser_init(const char *path, int *longest, size_t *numents, DIR
        *dir);
 char *do_browse_from(const char *inpath);
 void parse_browser_input(int *kbinput, bool *meta_key, bool *func_key);
-void browser_draw(int *width, int longest, int selected, char
+void browser_refresh(int *width, int longest, int selected, char
        **filelist, size_t numents);
 void striponedir(char *path);
 #endif