File: 1001_avoid_lexical_underscore.patch

package info (click to toggle)
libre-engine-re2-perl 0.13-2
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 436 kB
  • sloc: cpp: 273; perl: 79; sh: 4; makefile: 2
file content (16 lines) | stat: -rw-r--r-- 345 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
Description: Avoid lexical underscore removed since Perl 5.24
Author: Jonas Smedegaard <dr@jones.dk>
Last-Update: 2018-10-18
---
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
--- a/t/ree-pcre/s.t
+++ b/t/ree-pcre/s.t
@@ -2,7 +2,7 @@
 use Test::More tests => 10;
 use re::engine::RE2;
 
-my $_;
+#my $_;
 
 $_ = "ab";
 s/a//;