diff options
Diffstat (limited to 'lib/escfmt/eschtml.myr')
-rw-r--r-- | lib/escfmt/eschtml.myr | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/escfmt/eschtml.myr b/lib/escfmt/eschtml.myr index 950c8bc..e9aea4a 100644 --- a/lib/escfmt/eschtml.myr +++ b/lib/escfmt/eschtml.myr @@ -19,7 +19,7 @@ const htmlfmt = {sb, ap, args var s : byte[:] s = std.vanext(ap) - for c in std.bychar(s) + for c : std.bychar(s) match c | '&': std.sbputs(sb, "&") | '<': std.sbputs(sb, "<") |