patch 8.2.0785: libvterm code lags behind the upstream version
Problem: Libvterm code lags behind the upstream version.
Solution: Include revisions 734 - 740.
diff --git a/src/libvterm/t/run-test.pl b/src/libvterm/t/run-test.pl
index 1b2144a..d8fbe09 100644
--- a/src/libvterm/t/run-test.pl
+++ b/src/libvterm/t/run-test.pl
@@ -177,9 +177,11 @@
while( my $line = <$test> ) {
$line =~ s/^\s+//;
- next if $line =~ m/^(?:#|$)/;
-
chomp $line;
+
+ next if $line =~ m/^(?:#|$)/;
+ last if $line eq "__END__";
+
do_line( $line );
}