diff options
Diffstat (limited to 'add-patch.c')
| -rw-r--r-- | add-patch.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/add-patch.c b/add-patch.c index 43abd57ef6..85c4770572 100644 --- a/add-patch.c +++ b/add-patch.c @@ -1666,7 +1666,7 @@ soft_increment: } } else if (s->answer.buf[0] == 'p') { rendered_hunk_index = -1; - } else { + } else if (s->answer.buf[0] == '?') { const char *p = _(help_patch_remainder), *eol = p; color_fprintf(stdout, s->s.help_color, "%s", @@ -1690,6 +1690,9 @@ soft_increment: color_fprintf_ln(stdout, s->s.help_color, "%.*s", (int)(eol - p), p); } + } else { + err(s, _("Unknown command '%s' (use '?' for help)"), + s->answer.buf); } } |
