Displaying 3 results from an estimated 3 matches for "display_help".
2009 Jun 13
1
menu system behaviour with empty config file
The behaviour of the menu system is odd when an empty / not existing config file is specified:
the screen is cleared but not even the menu frame is displayed.
It seems to be a problem with run_menu() from menumain.c:
if (top != prev_top) {
draw_menu(entry, top, 1);
display_help(me->helptext);
} else if (entry != prev_entry) {
draw_row(prev_entry - top + 4 + VSHIFT, entry, top, 0, 0);
draw_row(entry - top + 4 + VSHIFT, entry, top, 0, 0);
display_help(me->helptext);
}
And we have entry = prev_entry = top = prev_top...
2011 Apr 16
20
[PATCH 00/20] Switch to ELF modules
From: Matt Fleming <matt.fleming at linux.intel.com>
This series fixes some bugs and switches the elflink branch to be
entirely ELF modules. It applies on top of,
http://syslinux.zytor.com/archives/2011-April/016369.html
The deletions in the diff stat below are mainly from deleting
com32/elflink/modules (finally!). Now there should be no duplicate
code because we don't need COM32 and
2017 Apr 04
1
[PATCH] Use Unicode single quotes ‘’ in place of short single quoted strings throughout.
...e these options. Use the equivalent commands instead, eg:
+Don’t use these options. Use the equivalent commands instead, eg:
guestfish --remote add-drive disk.img
diff --git a/fish/help.c b/fish/help.c
index 84820ee05..18e540018 100644
--- a/fish/help.c
+++ b/fish/help.c
@@ -43,23 +43,24 @@ display_help (void)
{
if (guestfs_is_config (g))
printf (_(
-"Add disk images to examine using the -a or -d options, or the 'add' command.\n"
-"Or create a new disk image using -N, or the 'alloc' or 'sparse' commands.\n"
-"Once you have done this, use th...