summary refs log tree commit diff stats
path: root/lib/packages
diff options
context:
space:
mode:
authorAraq <rumpf_a@web.de>2017-09-30 18:16:09 +0200
committerAraq <rumpf_a@web.de>2017-09-30 18:32:44 +0200
commit3ccc9c467d84dc8c3412acbea20fc10b5335eaa8 (patch)
treea397e4c0e3b6de4a89a7f71bf7168c166f53c235 /lib/packages
parent5cf789ac3fffeb895af3c43c0348c537af00c12e (diff)
downloadNim-3ccc9c467d84dc8c3412acbea20fc10b5335eaa8.tar.gz
'with' and 'without' are not keywords anymore
Diffstat (limited to 'lib/packages')
-rw-r--r--lib/packages/docutils/highlite.nim4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/packages/docutils/highlite.nim b/lib/packages/docutils/highlite.nim
index 06b90768c..1d396d9e0 100644
--- a/lib/packages/docutils/highlite.nim
+++ b/lib/packages/docutils/highlite.nim
@@ -58,8 +58,8 @@ const
     "interface", "is", "isnot", "iterator", "let", "macro", "method",
     "mixin", "mod", "nil", "not", "notin", "object", "of", "or", "out", "proc",
     "ptr", "raise", "ref", "return", "shl", "shr", "static",
-    "template", "try", "tuple", "type", "using", "var", "when", "while", "with",
-    "without", "xor", "yield"]
+    "template", "try", "tuple", "type", "using", "var", "when", "while",
+    "xor", "yield"]
 
 proc getSourceLanguage*(name: string): SourceLanguage =
   for i in countup(succ(low(SourceLanguage)), high(SourceLanguage)):