ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/rxvt-unicode/src/perl/matcher
(Generate patch)

Comparing rxvt-unicode/src/perl/matcher (file contents):
Revision 1.28 by sf-exg, Sun Jun 15 12:24:43 2014 UTC vs.
Revision 1.29 by sf-exg, Sun Jun 15 21:06:53 2014 UTC

255 255
256sub find_matches { 256sub find_matches {
257 my ($self, $row, $col) = @_; 257 my ($self, $row, $col) = @_;
258 my $line = $self->line ($row); 258 my $line = $self->line ($row);
259 my $text = $line->t; 259 my $text = $line->t;
260 my $off = $line->offset_of ($row, $col) if $col; 260 my $off = $line->offset_of ($row, $col) if defined $col;
261 261
262 my @matches; 262 my @matches;
263 for my $matcher (@{$self->{matchers}}) { 263 for my $matcher (@{$self->{matchers}}) {
264 my $launcher = $matcher->[1] || $self->{launcher}; 264 my $launcher = $matcher->[1] || $self->{launcher};
265 while ($text =~ /$matcher->[0]/g) { 265 while ($text =~ /$matcher->[0]/g) {

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines