diff options
Diffstat (limited to 'src/gleam_stdlib.erl')
-rw-r--r-- | src/gleam_stdlib.erl | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/gleam_stdlib.erl b/src/gleam_stdlib.erl index b7d32ff..98cb695 100644 --- a/src/gleam_stdlib.erl +++ b/src/gleam_stdlib.erl @@ -497,6 +497,7 @@ inspect_maybe_utf8_string(Binary, Acc) -> $\r -> <<$\\, $r>>; $\n -> <<$\\, $n>>; $\t -> <<$\\, $t>>; + $\f -> <<$\\, $f>>; Other -> <<Other/utf8>> end, inspect_maybe_utf8_string(Rest, <<Acc/binary, Escaped/binary>>); |