Merge pull request #1166 from sofia-riese/patch-1

fix(tui_layout.sh): resolve awk 'bad regex' error by using octal escape
This commit is contained in:
juewuy
2026-01-21 07:10:25 +08:00
committed by GitHub

View File

@@ -57,7 +57,7 @@ content_line() {
} }
charWidth = 1 charWidth = 1
if (r ~ /[^\x00-\x7F]/) { if (r ~ /[^\001-\177]/) {
charWidth = 2 charWidth = 2
} }