Skip to content

Commit

Permalink
Fix S32 parsing bug
Browse files Browse the repository at this point in the history
  • Loading branch information
hinrik committed Jul 24, 2009
1 parent e0fa86e commit 2f9635a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions Changes
Expand Up @@ -4,6 +4,7 @@
- Move all resource backends to App::Grok::Resource::*
- Added Win32::Console::ANSI as a recommended dep
- Make sure we die if the target is not recognized
- Fix small S32 parsing bug, causing Pod errors

0.15 Fri Jul 24 11:47:30 GMT 2009
- Fix logic error causing 'ansi' not to be the default on non-Win32
Expand Down
2 changes: 1 addition & 1 deletion lib/App/Grok/Resource/Functions.pm
Expand Up @@ -99,7 +99,7 @@ sub _read_functions {

my @new_func;
while (my $line = <$handle>) {
if (my ($directive, $title) = $line =~ /^=(\S+) +(.+)/) {
if (my ($directive, $title) = $line =~ /^=(\S+)(?: +(.+))?/) {
if (defined $new_func[NAME]) {
my $name = $new_func[NAME];

Expand Down

0 comments on commit 2f9635a

Please sign in to comment.