Index: src/help.c =================================================================== --- src/help.c (revision 4563) +++ src/help.c (working copy) @@ -547,13 +547,15 @@ #endif /* !DISABLE_HELP */ -/* Start the help browser for the edit window. */ +/* Start the help browser. */ void do_help_void(void) { - #ifndef DISABLE_HELP - /* Start the help browser for the edit window. */ - do_help(&edit_refresh); + /* Start the help browser, with the correct refresher for afterwards. */ + if (currmenu == MBROWSER || currmenu == MWHEREISFILE || currmenu == MGOTODIR) + do_help(&browser_refresh); + else + do_help(&edit_refresh); #else if (currmenu == MMAIN) nano_disabled_msg();