From 19e8d6017994dd3585ff1da8a4ecd37c8f2a1f8c Mon Sep 17 00:00:00 2001 From: axel Date: Wed, 17 Jan 2007 23:12:46 +1000 Subject: [PATCH] Make 'fish --help' display a help message, not start the help browser darcs-hash:20070117131246-ac50b-328c735ba09b8488cf6ee5b95d73290681ce5f06.gz --- main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.c b/main.c index 28b794757..2ce441993 100644 --- a/main.c +++ b/main.c @@ -214,7 +214,7 @@ static int fish_parse_opt( int argc, char **argv, char **cmd_ptr ) case 'h': { - *cmd_ptr = "help"; + *cmd_ptr = "__fish_print_help fish"; break; }