- Timestamp:
- 07/20/08 21:08:51 (4 months ago)
- Location:
- perl5/Pugs-Compiler-Rule
- Files:
-
- 3 modified
-
Changes (modified) (1 diff)
-
lib/Pugs/Compiler/Rule.pm (modified) (1 diff)
-
lib/Pugs/Emitter/Rule/Perl5/CharClass.pm (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
perl5/Pugs-Compiler-Rule/Changes
r21418 r21420 1 0.32 2008-07-21 1 2 0.31 2008-07-21 2 3 - unicode fixes -
perl5/Pugs-Compiler-Rule/lib/Pugs/Compiler/Rule.pm
r21418 r21420 5 5 package Pugs::Compiler::Rule; 6 6 7 our $VERSION = '0.3 1';7 our $VERSION = '0.32'; 8 8 9 9 use base 'Pugs::Compiler::Regex'; -
perl5/Pugs-Compiler-Rule/lib/Pugs/Emitter/Rule/Perl5/CharClass.pm
r21418 r21420 17 17 sub vianame { 18 18 my $c = shift; 19 $c =~ s/^\s+//; 20 $c =~ s/\s+$//; 19 21 my $s = charnames::vianame($c); 20 22 return $s if $s; … … 31 33 if $c eq "NEXT LINE" || $c eq "NEL"; 32 34 return $s if $s; 35 die "unknown unicode name: $c"; 33 36 } 34 37
