Displaying 1 result from an estimated 1 matches for "2c33049".
Did you mean:
23049
2010 Jun 01
1
[PATCH] fish: help command return error for non-existent commands (RHBZ#597145).
...ed) */
extern void list_commands (void);
-extern void display_command (const char *cmd);
+extern int display_command (const char *cmd);
extern int run_action (const char *cmd, int argc, char *argv[]);
/* in completion.c (auto-generated) */
diff --git a/src/generator.ml b/src/generator.ml
index 2c33049..571ea3a 100755
--- a/src/generator.ml
+++ b/src/generator.ml
@@ -7575,7 +7575,7 @@ and generate_fish_cmds () =
pr "\n";
(* display_command function, which implements guestfish -h cmd *)
- pr "void display_command (const char *cmd)\n";
+ pr "int display_command (c...