summaryrefslogtreecommitdiff
path: root/extra/config
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2003-06-30 18:14:36 +0000
committerEric Andersen <andersen@codepoet.org>2003-06-30 18:14:36 +0000
commit78eaff8c727f20f11f90d48df5bd44c38c8c6a6c (patch)
tree6371286351c03b602f0ba8d0dfe559e58663f768 /extra/config
parent57713139e9ab6ca670cafe7a3fc2d739bcdc370d (diff)
Patch from Pavel Roskin to fixup toplevel help text
Diffstat (limited to 'extra/config')
-rw-r--r--extra/config/mconf.c15
1 files changed, 12 insertions, 3 deletions
diff --git a/extra/config/mconf.c b/extra/config/mconf.c
index 3d02f4a31..571e39b8f 100644
--- a/extra/config/mconf.c
+++ b/extra/config/mconf.c
@@ -83,7 +83,17 @@ save_config_help[] =
"configuration options you have selected at that time.\n"
"\n"
"If you are uncertain what all this means then you should probably\n"
- "leave this blank.\n"
+ "leave this blank.\n",
+top_menu_help[] =
+ "\n"
+ "Use the Up/Down arrow keys (cursor keys) to highlight the item\n"
+ "you wish to change or submenu wish to select and press <Enter>.\n"
+ "Submenus are designated by \"--->\".\n"
+ "\n"
+ "Shortcut: Press the option's highlighted letter (hotkey).\n"
+ "\n"
+ "You may also use the <PAGE UP> and <PAGE DOWN> keys to scroll\n"
+ "unseen options into view.\n"
;
static char filename[PATH_MAX+1] = ".config";
@@ -468,8 +478,7 @@ static void show_help(struct menu *menu)
static void show_readme(void)
{
- while (dialog_textbox(NULL, "scripts/README.Menuconfig", rows, cols) < 0)
- ;
+ show_helptext("Help", top_menu_help);
}
static void conf_choice(struct menu *menu)