summary refs log tree commit diff stats
path: root/lib/pure
diff options
context:
space:
mode:
authorAndreas Rumpf <rumpf_a@web.de>2018-06-19 17:52:05 +0200
committerGitHub <noreply@github.com>2018-06-19 17:52:05 +0200
commit3ca11def6d320ff5120a3d438cffbdf25a72af7b (patch)
tree7c89ce265086cedd23b1a78b33bc6b925e56558b /lib/pure
parent0da87939d136f90eeb0ec613ff484b8f2992e7b0 (diff)
parent03b073d541e899585951fb51896ce4440f94387b (diff)
downloadNim-3ca11def6d320ff5120a3d438cffbdf25a72af7b.tar.gz
Merge pull request #7771 from nim-lang/nim-in-action-fixes
Higher Nim in Action coverage plus regression fix.
Diffstat (limited to 'lib/pure')
-rw-r--r--lib/pure/strutils.nim4
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/pure/strutils.nim b/lib/pure/strutils.nim
index 5de013c26..ab34a0b2d 100644
--- a/lib/pure/strutils.nim
+++ b/lib/pure/strutils.nim
@@ -17,6 +17,10 @@ import parseutils
 from math import pow, round, floor, log10
 from algorithm import reverse
 
+when defined(nimVmExportFixed):
+  from unicode import toLower, toUpper
+  export toLower, toUpper
+
 {.deadCodeElim: on.}  # dce option deprecated
 
 {.push debugger:off .} # the user does not want to trace a part