summary refs log tree commit diff stats
path: root/compiler
diff options
context:
space:
mode:
authorhlaaftana <10591326+hlaaftana@users.noreply.github.com>2020-04-26 11:12:16 +0300
committerGitHub <noreply@github.com>2020-04-26 10:12:16 +0200
commit76ffa4fa25ebf8f03a399a343088fa46e4ee13cb (patch)
treebe20f16f3064c88383d554c44745fa02e3f744e1 /compiler
parent31ba27590c6a2ddd5e6b65247b2d9f74b8ca1ba2 (diff)
downloadNim-76ffa4fa25ebf8f03a399a343088fa46e4ee13cb.tar.gz
fixes #14112, tests for #12892, #12671, #11697 (#14125)
Diffstat (limited to 'compiler')
-rw-r--r--compiler/options.nim3
1 files changed, 2 insertions, 1 deletions
diff --git a/compiler/options.nim b/compiler/options.nim
index 5f4372177..97cf435c5 100644
--- a/compiler/options.nim
+++ b/compiler/options.nim
@@ -722,7 +722,8 @@ proc findFile*(conf: ConfigRef; f: string; suppressStdlib = false): AbsoluteFile
 const stdlibDirs = [
   "pure", "core", "arch",
   "pure/collections",
-  "pure/concurrency", "impure",
+  "pure/concurrency",
+  "pure/unidecode", "impure",
   "wrappers", "wrappers/linenoise",
   "windows", "posix", "js"]