On Thu, Feb 05, 2009 at 09:28:26AM +0100, Thomas Rast wrote: > +my $use_readkey = 0; > +if ($repo->config_bool("interactive.singlekey")) { > + eval { > + use Term::ReadKey; > + $use_readkey = 1; > + }; > +} Sorry, I am way behind on git mails, so I didn't catch this sooner. But it should be "require Term::ReadKey", as "use" statements are done at compile time: $ perl -e 'eval { use Bogosity } or print "not found\n"' Can't locate Bogosity.pm in @INC ... $ perl -e 'eval { require Bogosity } or print "not found\n"' not found So add--interactive in 'next' is currently broken on non-readkey platforms. -Peff -- 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