summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--compiler/astalgo.nim2
-rw-r--r--compiler/ccgutils.nim2
2 files changed, 2 insertions, 2 deletions
diff --git a/compiler/astalgo.nim b/compiler/astalgo.nim
index 77108eb7b..3afb2eaeb 100644
--- a/compiler/astalgo.nim
+++ b/compiler/astalgo.nim
@@ -215,7 +215,7 @@ proc rspaces(x: int): Rope =
 
 proc toYamlChar(c: char): string =
   case c
-  of '\0'..'\x1F', '\x80'..'\xFF': result = "\\u" & strutils.toHex(ord(c), 4)
+  of '\0'..'\x1F', '\x7F'..'\xFF': result = "\\u" & strutils.toHex(ord(c), 4)
   of '\'', '\"', '\\': result = '\\' & c
   else: result = $c
 
diff --git a/compiler/ccgutils.nim b/compiler/ccgutils.nim
index c37a8fcdb..c8e742de3 100644
--- a/compiler/ccgutils.nim
+++ b/compiler/ccgutils.nim
@@ -220,7 +220,7 @@ proc makeLLVMString*(s: string): Rope =
       add(result, rope(res))
       setLen(res, 0)
     case s[i]
-    of '\0'..'\x1F', '\x80'..'\xFF', '\"', '\\':
+    of '\0'..'\x1F', '\x7F'..'\xFF', '\"', '\\':
       add(res, '\\')
       add(res, toHex(ord(s[i]), 2))
     else: add(res, s[i])