From 6e2a948a422ebdc382f1d22a7e20cd8441ce801d Mon Sep 17 00:00:00 2001 From: deuce <> Date: Wed, 14 Mar 2018 02:47:05 +0000 Subject: [PATCH] Fix error in last commit. --- exec/load/utf8_ascii.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/exec/load/utf8_ascii.js b/exec/load/utf8_ascii.js index 9c5be005a6..fc75cab6be 100644 --- a/exec/load/utf8_ascii.js +++ b/exec/load/utf8_ascii.js @@ -17,7 +17,7 @@ function utf8_ascii(uni) uc |= ch.charCodeAt(i) & 0x3f; } - nch = unicode_ascii(uc); + nch = unicode_cp437(uc); if (nch.charCodeAt(0) > 0x7f) nch = '?'; return nch; -- GitLab