diff options
author | Junio C Hamano <gitster@pobox.com> | 2009-10-28 00:03:24 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2009-10-28 00:03:24 -0700 |
commit | aab748636dbbd6412af6f4996c2791eba4246c0c (patch) | |
tree | c80f0114021a14cd0263a98c2687cc8261e5dff1 /builtin-help.c | |
parent | ade2ca0ca9f8335be300d5538e1ca9cb3594ae64 (diff) | |
parent | f1be316ada93158507c315ee7948bb9e6007eb91 (diff) | |
download | git-aab748636dbbd6412af6f4996c2791eba4246c0c.tar.gz |
Merge branch 'maint-1.6.4' into maint
* maint-1.6.4:
rebase -i: more graceful handling of invalid commands
help -i: properly error out if no info viewer can be found
Diffstat (limited to 'builtin-help.c')
-rw-r--r-- | builtin-help.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/builtin-help.c b/builtin-help.c index e1eba778a5..e1ade8edd3 100644 --- a/builtin-help.c +++ b/builtin-help.c @@ -372,6 +372,7 @@ static void show_info_page(const char *git_cmd) const char *page = cmd_to_page(git_cmd); setenv("INFOPATH", system_path(GIT_INFO_PATH), 1); execlp("info", "info", "gitman", page, NULL); + die("no info viewer handled the request"); } static void get_html_page_path(struct strbuf *page_path, const char *page) |