Changeset 10621 for trunk/Padre/dev.pl


Ignore:
Timestamp:
02/08/10 03:51:35 (2 years ago)
Author:
azawawi
Message:

Perl tidy

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Padre/dev.pl

    r10615 r10621  
    3636        'debug|d'     => \$DEBUG, 
    3737        'trace'       => sub { $ENV{PADRE_DEBUG} = 1 }, 
    38         'die'         => sub { $ENV{PADRE_DIE}   = 1 }, 
     38        'die'         => sub { $ENV{PADRE_DIE} = 1 }, 
    3939        'profile'     => \$PROFILE, 
    4040        'a'           => \$PLUGINS, 
     
    8282 
    8383if ($FULLTRACE) { 
    84     eval { 
    85         require Devel::Trace; 
    86     }; 
     84    eval { require Devel::Trace; }; 
    8785    if ($@) { 
    8886        print "Error while initilizing --fulltrace while trying to load Devel::Trace:\n" 
     
    115113push @cmd, '--help' if $USAGE; 
    116114 
    117 if ( $DEBUG ) { 
     115if ($DEBUG) { 
    118116    print "Running " . join( ' ', @cmd ) . "\n"; 
    119117} 
    120118 
    121 if ( $USAGE ) { 
     119if ($USAGE) { 
    122120    usage(); 
    123121} 
Note: See TracChangeset for help on using the changeset viewer.