diff options
author | Andreas Rumpf <rumpf_a@web.de> | 2019-09-03 20:15:27 +0200 |
---|---|---|
committer | Andreas Rumpf <rumpf_a@web.de> | 2019-09-03 20:15:27 +0200 |
commit | cb0450398a5695e1e1193e6c49ff9c7548980438 (patch) | |
tree | 42de5386b44c366eb58d367c48f953d4a6e6cc38 /compiler | |
parent | 07a986afa169c6277a1b7c1be0f49b29b5ed228a (diff) | |
download | Nim-cb0450398a5695e1e1193e6c49ff9c7548980438.tar.gz |
introduce --oldgensym:on rather than --useVersion
Diffstat (limited to 'compiler')
-rw-r--r-- | compiler/commands.nim | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/compiler/commands.nim b/compiler/commands.nim index 1123996c1..386b29f8f 100644 --- a/compiler/commands.nim +++ b/compiler/commands.nim @@ -783,15 +783,15 @@ proc processSwitch*(switch, arg: string, pass: TCmdLinePass, info: TLineInfo; of "expandmacro": expectArg(conf, switch, arg, pass, info) conf.macrosToExpand[arg] = "T" + of "oldgensym": + processOnOffSwitchG(conf, {optNimV019}, arg, pass, info) of "useversion": expectArg(conf, switch, arg, pass, info) case arg - of "0.19": - conf.globalOptions.incl optNimV019 of "1.0": discard "the default" else: - localError(conf, info, "unknown Nim version; currently supported values are: {0.19, 1.0}") + localError(conf, info, "unknown Nim version; currently supported values are: {1.0}") of "": conf.projectName = "-" else: |