Junio C Hamano <gitster@xxxxxxxxx> writes: > Jeff King <peff@xxxxxxxx> writes: > ... >> It could still benefit from cleaning up FakeTerm, since we lazily init >> the object since 30d45f798d (git-svn: delay term initialization, >> 2014-09-14). But I don't think there's a visible bug here with the new >> version of Term::ReadLine::Gnu. > > True. Let me drop the patch from the 'next down to master > fast-track' candidate status. We did the above but then everybody seems to have forgotten about it. Let's resurrect the topic. Here is my attempt. ---- >8 ---- From: Wesley Schwengle <wesleys@xxxxxxxxxxxxxxx> Subject: [PATCH] git-svn: drop FakeTerm hack Drop the FakeTerm hack, just like dfd46bae (send-email: drop FakeTerm hack, 2023-08-08) did, for exactly the same reason. Signed-off-by: Wesley Schwengle <wesleys@xxxxxxxxxxxxxxx> Signed-off-by: Junio C Hamano <gitster@xxxxxxxxx> --- git-svn.perl | 20 ++------------------ 1 file changed, 2 insertions(+), 18 deletions(-) diff --git c/git-svn.perl w/git-svn.perl index be987e316f..4e8878f035 100755 --- c/git-svn.perl +++ w/git-svn.perl @@ -297,28 +297,12 @@ sub _req_svn { {} ], ); -package FakeTerm; -sub new { - my ($class, $reason) = @_; - return bless \$reason, shift; -} -sub readline { - my $self = shift; - die "Cannot use readline on FakeTerm: $$self"; -} -package main; - my $term; sub term_init { - $term = eval { - require Term::ReadLine; - $ENV{"GIT_SVN_NOTTY"} + require Term::ReadLine; + $term = $ENV{"GIT_SVN_NOTTY"} ? new Term::ReadLine 'git-svn', \*STDIN, \*STDOUT : new Term::ReadLine 'git-svn'; - }; - if ($@) { - $term = new FakeTerm "$@: going non-interactive"; - } } my $cmd;