Skip to content

Commit

Permalink
Added back form feed character escape
Browse files Browse the repository at this point in the history
Fix #270 and fix #268
  • Loading branch information
DavyLandman committed Sep 6, 2024
1 parent d5666ef commit b4a6545
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -691,6 +691,9 @@ private IValue readString(Type expected) throws IOException {
case 'r':
builder.append('\r');
break;
case 'f':
builder.append('\f');
break;
case 'b':
builder.append('\b');
break;
Expand Down

0 comments on commit b4a6545

Please sign in to comment.