[Secure-testing-commits] r56651 - bin
Raphael Geissert
geissert at moszumanska.debian.org
Thu Oct 12 16:05:45 UTC 2017
Author: geissert
Date: 2017-10-12 16:05:44 +0000 (Thu, 12 Oct 2017)
New Revision: 56651
Modified:
bin/check-new-issues
Log:
no need to account for blank spaces given that they are not tolerated
Modified: bin/check-new-issues
===================================================================
--- bin/check-new-issues 2017-10-12 14:32:58 UTC (rev 56650)
+++ bin/check-new-issues 2017-10-12 16:05:44 UTC (rev 56651)
@@ -220,7 +220,7 @@
# If first word then complete commands
- if (substr($line, 0, $start) =~ /^\s*[.]?$/) {
+ if ($start == 0) {
return $term->completion_matches($text,
$attribs->{list_completion_function});
} else {
More information about the Secure-testing-commits
mailing list