Jay Soffian <jaysoffian@xxxxxxxxx> writes: > Else when the user hits ctrl-c at the "Was the merge successful? > [y/n]" prompt, mergetool goes into an infinite loop asking > for input. > > Signed-off-by: Jay Soffian <jaysoffian@xxxxxxxxx> We still seem to miss one "read" unchecked in resolve_symlink_merge(), even with this patch. > git-mergetool--lib.sh | 6 +++++- > 1 files changed, 5 insertions(+), 1 deletions(-) > > diff --git a/git-mergetool--lib.sh b/git-mergetool--lib.sh > index 8fc65d0400..0eb424484c 100644 > --- a/git-mergetool--lib.sh > +++ b/git-mergetool--lib.sh > @@ -21,7 +21,11 @@ check_unchanged () { > do > echo "$MERGED seems unchanged." > printf "Was the merge successful? [y/n] " > - read answer > + if ! read answer > + then > + status=1 > + break > + fi I suspect that it would be more consistent with 6b44577 (mergetool: check return value from read, 2011-07-01), which this patch is a follow-up to, to do: read answer || return 1 here. Thanks. -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html