ref: e7dc3dab103aae8b4f75bf16dabfe63278cd9f24
parent: d133a4306688e51df959da814d48f10f33cad23a
author: qwx <qwx@sciops.net>
date: Sun Jan 4 22:18:49 EST 2026
test/T.errmsg: fix quotes
--- a/test/T.errmsg
+++ b/test/T.errmsg
@@ -57,16 +57,16 @@
division by zero in mod
BEGIN { print 1%0 }-can.t read value.* array name.
+can''t read value.* array name.
BEGIN { x[1] = 0; split("a b c", y, x) }-can.t read value.* function
+can''t read value.* function
function f(){}; {split($0, x, f)}-can.t assign.* a function
+can''t assign.* a function
function f(){}; {f = split($0, x)}-can.t assign to x; it.s an array name.
+can''t assign to x; it.s an array name.
{x = split($0, x)}is a function, not an array
@@ -76,7 +76,7 @@
BEGIN { f(f) } function f() { print "x" }-can.t use function f as argument in f
+can''t use function f as argument in f
BEGIN { f(f) } function f() { print "x" }@@ -151,10 +151,10 @@
illegal .*next.* from END
END { next; print NR }-can.t open file ./nonexistentdir/foo
+can''t open file ./nonexistentdir/foo
BEGIN { print "abc" >"./nonexistentdir/foo" }-you can.t define function f more than once
+you can''t define function f more than once
function f() { print 1 } function f() { print 2 }--
⑨