summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohannes Schindelin <johannes.schindelin@gmx.de>2019-05-14 11:22:33 (GMT)
committerJunio C Hamano <gitster@pobox.com>2019-05-15 01:57:31 (GMT)
commitc3c003e722317eacd2adf98d1758d7991cb9834f (patch)
treef2678711a4b655593704492c2ffe8115a5ed11b6
parentd4fe60ed332a6031bd76db9c65c17ab3e0d7c0f5 (diff)
downloadgit-c3c003e722317eacd2adf98d1758d7991cb9834f.zip
git-c3c003e722317eacd2adf98d1758d7991cb9834f.tar.gz
git-c3c003e722317eacd2adf98d1758d7991cb9834f.tar.bz2
sequencer: the `am` and `rebase--interactive` scripts are gone
Update a code comment that referred to those files as if they were still there. Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de> Signed-off-by: Junio C Hamano <gitster@pobox.com>
-rw-r--r--sequencer.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sequencer.c b/sequencer.c
index f88a97f..334de14 100644
--- a/sequencer.c
+++ b/sequencer.c
@@ -767,7 +767,7 @@ static int parse_key_value_squoted(char *buf, struct string_list *list)
* GIT_AUTHOR_DATE='$author_date'
*
* where $author_name, $author_email and $author_date are quoted. We are strict
- * with our parsing, as the file was meant to be eval'd in the old
+ * with our parsing, as the file was meant to be eval'd in the now-removed
* git-am.sh/git-rebase--interactive.sh scripts, and thus if the file differs
* from what this function expects, it is better to bail out than to do
* something that the user does not expect.