Ignore:
Timestamp:
03/15/10 04:51:54 (2 years ago)
Author:
azawawi
Message:

Perl tidy (25 files)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Padre/lib/Padre/Document/Perl.pm

    r11112 r11120  
    346346# Implemented as a task. See Padre::Task::SyntaxChecker::Perl 
    347347sub check_syntax { 
    348     shift->_check_syntax_internals( { @_, 
    349         background => 0 } ); 
     348    shift->_check_syntax_internals( 
     349        {   @_, 
     350            background => 0 
     351        } 
     352    ); 
    350353} 
    351354 
    352355sub check_syntax_in_background { 
    353     shift->_check_syntax_internals( { @_, 
    354         background => 1 } ); 
     356    shift->_check_syntax_internals( 
     357        {   @_, 
     358            background => 1 
     359        } 
     360    ); 
    355361} 
    356362 
     
    12941300    my $first  = $editor->PositionFromLine($line); 
    12951301    my $col    = $pos - $first; 
    1296     my $text   = $editor->GetTextRange($first, $pos); 
     1302    my $text   = $editor->GetTextRange( $first, $pos ); 
    12971303 
    12981304    $editor->AddText( $self->newline ); 
     
    13011307    $editor->AddText($text); 
    13021308 
    1303     $editor->SetCurrentPos( $pos + $col + 1); 
     1309    $editor->SetCurrentPos( $pos + $col + 1 ); 
    13041310 
    13051311    return 1; 
Note: See TracChangeset for help on using the changeset viewer.