diff options
author | Johannes Schindelin <johannes.schindelin@gmx.de> | 2019-12-13 09:07:51 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2019-12-13 21:37:13 +0100 |
commit | 25ea47af494c5ec086aae102d358c4001c9a1459 (patch) | |
tree | 0aa160ef8ba44796e2c09cb47eca3d6f7ce46f05 /add-interactive.h | |
parent | built-in add -p: show colored hunks by default (diff) | |
download | git-25ea47af494c5ec086aae102d358c4001c9a1459.tar.xz git-25ea47af494c5ec086aae102d358c4001c9a1459.zip |
built-in add -p: adjust hunk headers as needed
When skipping a hunk that adds a different number of lines than it
removes, we need to adjust the subsequent hunk headers of non-skipped
hunks: in pathological cases, the context is not enough to determine
precisely where the patch should be applied.
This problem was identified in 23fea4c240 (t3701: add failing test for
pathological context lines, 2018-03-01) and fixed in the Perl version in
fecc6f3a68 (add -p: adjust offsets of subsequent hunks when one is
skipped, 2018-03-01).
And this patch fixes it in the C version of `git add -p`.
In contrast to the Perl version, we try to keep the extra text on the
hunk header (which typically contains the signature of the function
whose code is changed in the hunk) intact.
Note: while the C version does not support staging mode changes at this
stage, we already prepare for this by simply skipping the hunk header if
both old and new offset is 0 (this cannot happen for regular hunks, and
we will use this as an indicator that we are looking at a special hunk).
Likewise, we already prepare for hunk splitting by handling the absence
of extra text in the hunk header gracefully: only the first split hunk
will have that text, the others will not (indicated by an empty extra
text start/end range). Preparing for hunk splitting already at this
stage avoids an indentation change of the entire hunk header-printing
block later, and is almost as easy to review as without that handling.
Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'add-interactive.h')
-rw-r--r-- | add-interactive.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/add-interactive.h b/add-interactive.h index 0e3d93acc9..584f304a9a 100644 --- a/add-interactive.h +++ b/add-interactive.h @@ -1,6 +1,21 @@ #ifndef ADD_INTERACTIVE_H #define ADD_INTERACTIVE_H +#include "color.h" + +struct add_i_state { + struct repository *r; + int use_color; + char header_color[COLOR_MAXLEN]; + char help_color[COLOR_MAXLEN]; + char prompt_color[COLOR_MAXLEN]; + char error_color[COLOR_MAXLEN]; + char reset_color[COLOR_MAXLEN]; + char fraginfo_color[COLOR_MAXLEN]; +}; + +void init_add_i_state(struct add_i_state *s, struct repository *r); + struct repository; struct pathspec; int run_add_i(struct repository *r, const struct pathspec *ps); |