Changeset 9309 for src/Pugs/Run

Show
Ignore:
Timestamp:
03/06/06 22:27:05 (3 years ago)
Author:
audreyt
Message:

* sweeping warnings fix on unused imports and functions.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • src/Pugs/Run/Args.hs

    r9212 r9309  
    7171    | takesArg opt              = unpackOption opt ++ (arg:unpackOptions rest) 
    7272unpackOptions (('-':opt):rest)  = unpackOption opt ++ unpackOptions rest 
    73 unpackOptions opts@[filename]   = opts 
     73unpackOptions opts@[_]          = opts 
    7474unpackOptions (filename:rest)   = filename : "--" : rest 
    7575