From b76e68b961e1ed23cf14c9987ee94145c2749f2d Mon Sep 17 00:00:00 2001 From: rswindell <> Date: Wed, 10 Jul 2019 04:54:46 +0000 Subject: [PATCH] Use slash rather pipe to separate Unicode code point from fallback char. The pipe char is problematic to discuss in msg bases and on the Wiki. <shrug> --- src/sbbs3/atcodes.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sbbs3/atcodes.cpp b/src/sbbs3/atcodes.cpp index 24bee8c1f3..cf0c7c8b4f 100644 --- a/src/sbbs3/atcodes.cpp +++ b/src/sbbs3/atcodes.cpp @@ -148,7 +148,7 @@ const char* sbbs_t::atcode(char* sp, char* str, size_t maxlen) outchar(codepoint, unicode_to_cp437(codepoint)); else { char fallback = (char)strtoul(tp + 1, NULL, 16); - if(*tp == '|') + if(*tp == '/') outchar(codepoint, fallback); else if(*tp == '!') { char ch = unicode_to_cp437(codepoint); -- GitLab