]> git.ipfire.org Git - thirdparty/git.git/commitdiff
add-patch: reset "permitted" at loop start
authorRené Scharfe <l.s.r@web.de>
Sun, 5 Oct 2025 15:55:50 +0000 (17:55 +0200)
committerJunio C Hamano <gitster@pobox.com>
Sun, 5 Oct 2025 20:34:13 +0000 (13:34 -0700)
Don't accumulate allowed options from any visited hunks, start fresh at
the top of the loop instead and only record the allowed options for the
current hunk.

Reported-by: Junio C Hamano <gitster@pobox.com>
Signed-off-by: René Scharfe <l.s.r@web.de>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
add-patch.c
t/t3701-add-interactive.sh

index 52e881d3b06f8baa5e5fb81153892e82da51fa30..7b489d0a75115fb8fed348c677d6367f97c56ab6 100644 (file)
@@ -1428,15 +1428,6 @@ static int patch_update_file(struct add_p_state *s,
        struct child_process cp = CHILD_PROCESS_INIT;
        int colored = !!s->colored.len, quit = 0, use_pager = 0;
        enum prompt_mode_type prompt_mode_type;
-       enum {
-               ALLOW_GOTO_PREVIOUS_HUNK = 1 << 0,
-               ALLOW_GOTO_PREVIOUS_UNDECIDED_HUNK = 1 << 1,
-               ALLOW_GOTO_NEXT_HUNK = 1 << 2,
-               ALLOW_GOTO_NEXT_UNDECIDED_HUNK = 1 << 3,
-               ALLOW_SEARCH_AND_GOTO = 1 << 4,
-               ALLOW_SPLIT = 1 << 5,
-               ALLOW_EDIT = 1 << 6
-       } permitted = 0;
 
        /* Empty added files have no hunks */
        if (!file_diff->hunk_nr && !file_diff->added)
@@ -1446,6 +1437,16 @@ static int patch_update_file(struct add_p_state *s,
        render_diff_header(s, file_diff, colored, &s->buf);
        fputs(s->buf.buf, stdout);
        for (;;) {
+               enum {
+                       ALLOW_GOTO_PREVIOUS_HUNK = 1 << 0,
+                       ALLOW_GOTO_PREVIOUS_UNDECIDED_HUNK = 1 << 1,
+                       ALLOW_GOTO_NEXT_HUNK = 1 << 2,
+                       ALLOW_GOTO_NEXT_UNDECIDED_HUNK = 1 << 3,
+                       ALLOW_SEARCH_AND_GOTO = 1 << 4,
+                       ALLOW_SPLIT = 1 << 5,
+                       ALLOW_EDIT = 1 << 6
+               } permitted = 0;
+
                if (hunk_index >= file_diff->hunk_nr)
                        hunk_index = 0;
                hunk = file_diff->hunk_nr
index 385e55c783a164b6ad5d24d40615f0baf5d9192f..8c24a76e5909389724dac09e4167f24fe2a550f4 100755 (executable)
@@ -1386,4 +1386,18 @@ test_expect_success 'options y, n, j, k, e roll over to next undecided (2)' '
        test_cmp expect actual
 '
 
+test_expect_success 'invalid option s is rejected' '
+       test_write_lines a b c d e f g h i j k >file &&
+       git add file &&
+       test_write_lines X b X d e f g h i j X >file &&
+       test_write_lines j s q | git add -p >out &&
+       sed -ne "s/ @@.*//" -e "s/ \$//" -e "/^(/p" <out >actual &&
+       cat >expect <<-EOF &&
+       (1/2) Stage this hunk [y,n,q,a,d,k,K,j,J,g,/,s,e,p,?]?
+       (2/2) Stage this hunk [y,n,q,a,d,k,K,j,J,g,/,e,p,?]? Sorry, cannot split this hunk
+       (2/2) Stage this hunk [y,n,q,a,d,k,K,j,J,g,/,e,p,?]?
+       EOF
+       test_cmp expect actual
+'
+
 test_done