Projects
New Ticket     Wiki     Browse Source     Timeline     Roadmap     Bug Reports     Search

Changeset 38230 for trunk/base/src

Show
Ignore:
Timestamp:
07/13/08 03:06:54 (5 months ago)
Author:
raimue@…
Message:

port/port.tcl:
Exit gracefully if an invalid global option was given

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/base/src/port/port.tcl

    r38033 r38230  
    31703170 
    31713171# Parse global options that will affect all subsequent commands 
    3172 parse_options "global" ui_options global_options 
     3172if {[catch {parse_options "global" ui_options global_options} result]} { 
     3173    puts "Error: $result" 
     3174    print_usage 
     3175    exit 1 
     3176} 
    31733177 
    31743178# Get arguments remaining after option processing