Changeset 5158 for src/Pugs/Run/Args.hs
- Timestamp:
- 07/03/05 18:07:32 (4 years ago)
- svk:copy_cache_prev:
- 6965
- Files:
-
- 1 modified
-
src/Pugs/Run/Args.hs (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
src/Pugs/Run/Args.hs
r5001 r5158 156 156 isDashE (_) = False 157 157 158 joinDashE ((Opt "-M" mod):args) = joinDashE ((Opt "-e" ("use " ++ mod ++ ";\n")):args) 158 -- -E is like -e, but not accessible as a normal parameter and used only 159 -- internally: 160 -- "-e foo bar.p6" executes "foo" with @*ARGS[0] eq "bar.p6", 161 -- "-E foo bar.p6" executes "foo" and then bar.p6. 162 joinDashE ((Opt "-M" mod):args) = joinDashE ((Opt "-E" (";use " ++ mod ++ ";\n")):args) 159 163 160 164 joinDashE ((Opt "-e" a):(Opt "-e" b):args) =
