Changeset 11061
- Timestamp:
- 03/10/10 23:54:50 (2 years ago)
- Location:
- trunk/Padre/lib/Padre
- Files:
-
- 2 edited
-
Document/Perl.pm (modified) (1 diff)
-
Task/ErrorParser.pm (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Padre/lib/Padre/Document/Perl.pm
r11008 r11061 346 346 # Implemented as a task. See Padre::Task::SyntaxChecker::Perl 347 347 sub check_syntax { 348 shift->_check_syntax_internals( { @_, background => 0 } ); 348 shift->_check_syntax_internals( { @_, 349 background => 0 } ); 349 350 } 350 351 351 352 sub check_syntax_in_background { 352 shift->_check_syntax_internals( { @_, background => 1 } ); 353 shift->_check_syntax_internals( { @_, 354 background => 1 } ); 353 355 } 354 356 -
trunk/Padre/lib/Padre/Task/ErrorParser.pm
r10997 r11061 42 42 my $main = shift->{main}; 43 43 return if !$main; 44 my $errorlist = $main ->errorlist if $main;44 my $errorlist = $main ? $main->errorlist : undef; 45 45 my $data = $self->data; 46 46 my $parser = $self->parser;
Note: See TracChangeset
for help on using the changeset viewer.
