We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8085919 commit ce8e87bCopy full SHA for ce8e87b
Changes
@@ -8,6 +8,8 @@ indicates the contributor was also the author of the fix; Thanks!
8
9
**** Fix capital S for signed numbers, [Piotr Binkowski].
10
11
+**** Fix // in filenames, bug1610. [Peter Nelson]
12
+
13
14
* Verilog::Language 3.468 2019-09-12
15
Getopt.pm
@@ -81,7 +81,7 @@ sub parameter_file {
81
my $hold_fileline = $self->fileline();
82
while (my $line = $fh->getline()) {
83
chomp $line;
84
- $line =~ s/\/\/.*$//;
+ $line =~ s/(?:^|\s)\/\/.*$//;
85
next if $line =~ /^\s*$/;
86
$self->fileline("$filename:$.");
87
my @p = (split /\s+/,"$line ");
0 commit comments