diff options
author | Andreas Rumpf <rumpf_a@web.de> | 2013-12-10 11:53:58 -0800 |
---|---|---|
committer | Andreas Rumpf <rumpf_a@web.de> | 2013-12-10 11:53:58 -0800 |
commit | 9848f82c035f38dcf3633998d263821dc9372638 (patch) | |
tree | ca2eeca61be0cfef028c75f2376bded08d3ff1f9 /lib/pure/parseopt.nim | |
parent | 016b1e00685370e65d78d898b47f3296f0177ccc (diff) | |
parent | 8561ef5bc8e79c36f27d359b4b495803af00d1cc (diff) | |
download | Nim-9848f82c035f38dcf3633998d263821dc9372638.tar.gz |
Merge pull request #730 from zielmicha/fix-parameters
Make parseopt correct (and based on seq[string] as parameters, not string)
Diffstat (limited to 'lib/pure/parseopt.nim')
-rw-r--r-- | lib/pure/parseopt.nim | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/lib/pure/parseopt.nim b/lib/pure/parseopt.nim index 6d9d16bc9..fa704bbce 100644 --- a/lib/pure/parseopt.nim +++ b/lib/pure/parseopt.nim @@ -10,7 +10,10 @@ ## This module provides the standard Nimrod command line parser. ## It supports one convenience iterator over all command line options and some ## lower-level features. - +## +## DEPRECATED. Use parseopt2 instead as this version has issues with spaces +## in arguments. +{.deprecated.} {.push debugger: off.} include "system/inclrtl" |