From 00478dfa8c348fc198f4964ebaeb496e10b34f1f Mon Sep 17 00:00:00 2001 From: Rauli Laine Date: Thu, 17 Aug 2017 00:49:24 +0300 Subject: [PATCH] Fix Unicode code point escape sequence --- src/compiler.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/compiler.cpp b/src/compiler.cpp index 44e196d..98974f2 100644 --- a/src/compiler.cpp +++ b/src/compiler.cpp @@ -269,7 +269,7 @@ namespace plorth return false; } - buffer.append(1, c); + buffer.append(1, result); } break;