Changeset 9309 for src/Pugs/Run
- Timestamp:
- 03/06/06 22:27:05 (3 years ago)
- Files:
-
- 1 modified
-
src/Pugs/Run/Args.hs (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
src/Pugs/Run/Args.hs
r9212 r9309 71 71 | takesArg opt = unpackOption opt ++ (arg:unpackOptions rest) 72 72 unpackOptions (('-':opt):rest) = unpackOption opt ++ unpackOptions rest 73 unpackOptions opts@[ filename]= opts73 unpackOptions opts@[_] = opts 74 74 unpackOptions (filename:rest) = filename : "--" : rest 75 75
