From: Benno Schulenberg Date: Sun, 1 Feb 2015 14:00:09 +0000 (+0100) Subject: cfdisk: make '?' an alias of 'h', to also show the help screen X-Git-Tag: v2.26-rc2~37 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=2a0ffa311c8ac49847965b834d1e4b06cac3b168;p=thirdparty%2Futil-linux.git cfdisk: make '?' an alias of 'h', to also show the help screen Signed-off-by: Benno Schulenberg --- diff --git a/disk-utils/cfdisk.c b/disk-utils/cfdisk.c index eb3141b616..8658ff25af 100644 --- a/disk-utils/cfdisk.c +++ b/disk-utils/cfdisk.c @@ -1924,6 +1924,7 @@ static int main_menu_action(struct cfdisk *cf, int key) ref = 1; break; case 'h': /* Help */ + case '?': ui_help(); ref = 1; break;