From 6c65a57c505f99d6b60e19b6a336527e41d2dbb9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Deuc=D0=B5?= <shurd@sasktel.net> Date: Tue, 24 Sep 2024 19:09:38 -0400 Subject: [PATCH] Fix APC/SOS naming. Thanks Ree! --- xtrn/termtest/termtest.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/xtrn/termtest/termtest.js b/xtrn/termtest/termtest.js index 463b7837f6..2f0735ab28 100644 --- a/xtrn/termtest/termtest.js +++ b/xtrn/termtest/termtest.js @@ -187,7 +187,7 @@ var tests = [ console.write("\x1bM"); return check_xy(5, 1); }}, - {'name':'APS', 'func':function() { + {'name':'APC', 'func':function() { console.gotoxy(1,1); console.write("\x1b_This is an application string\x1b\\"); return check_xy(1, 1); @@ -212,7 +212,7 @@ var tests = [ return check_xy(1, 1); // TODO: Palette redefinitions... }}, - {'name':'APS', 'func':function() { + {'name':'SOS', 'func':function() { console.gotoxy(1,1); console.write("\x1bXThis is just a string\x1b\\"); return check_xy(1, 1); -- GitLab