Skip to content

Commit

Permalink
Fix save lexem with single quotes
Browse files Browse the repository at this point in the history
  • Loading branch information
silvioq committed Jul 23, 2011
1 parent 31e4bdb commit 2842390
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Mojolicious/Command/Generate/Lexicon.pm
Expand Up @@ -112,8 +112,8 @@ use utf8;
our %Lexicon = (
% foreach my $lexem (sort keys %$lexicon) {
% $lexem=~s/'/\\'/g;
% my $data = $lexicon->{$lexem} || '';
% $lexem=~s/'/\\'/g;
% utf8::encode $data;
% $data =~s/'/\\'/g;
% if( $data =~ s/\n/\\n/g ){
Expand Down

0 comments on commit 2842390

Please sign in to comment.