Преглед на файлове

fix: Parse octal echo escapes

Found by this eslint issue:

/puter/packages/phoenix/src/puter-shell/coreutils/coreutil_lib/echo_escapes.js
  107:59  error  'hexchars' is not defined  no-undef
Sam Atkins преди 1 година
родител
ревизия
6ad8f5e06a
променени са 1 файла, в които са добавени 1 реда и са изтрити 1 реда
  1. 1 1
      packages/phoenix/src/puter-shell/coreutils/coreutil_lib/echo_escapes.js

+ 1 - 1
packages/phoenix/src/puter-shell/coreutils/coreutil_lib/echo_escapes.js

@@ -104,7 +104,7 @@ const echo_escapes = {
             caller.output(NUL);
             return;
         }
-        caller.output(String.fromCharCode(Number.parseInt(hexchars, 8)));
+        caller.output(String.fromCharCode(Number.parseInt(octchars, 8)));
     },
     '\\': caller => caller.output('\\'),
 };