summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorMichał Zieliński <michal@zielinscy.org.pl>2013-12-10 20:41:52 +0100
committerMichał Zieliński <michal@zielinscy.org.pl>2013-12-10 20:41:52 +0100
commit2e0da6a5c6f0440b63a0c1138f3e631cfdfc6ab8 (patch)
tree364b1b725549c1940a72b0dc6a0c957aa98c119b
parent14dd3113a255eb59a76b6e1b3346fd9d5122038d (diff)
downloadNim-2e0da6a5c6f0440b63a0c1138f3e631cfdfc6ab8.tar.gz
Make old parseopt as deprecated.
-rw-r--r--lib/pure/parseopt.nim5
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"