File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -311,9 +311,9 @@ begin
311
311
--tabulator t = U+0009
312
312
case buf
313
313
when 'b' then varbuf := varbuf || chr(8);
314
- when 'f' then varbuf := varbuf || chr(13 );
314
+ when 'f' then varbuf := varbuf || chr(12 );
315
315
when 'n' then varbuf := varbuf || chr(10);
316
- when 'r' then varbuf := varbuf || chr(14 );
316
+ when 'r' then varbuf := varbuf || chr(13 );
317
317
when 't' then varbuf := varbuf || chr(9);
318
318
end case;
319
319
--varbuf := varbuf || buf;
Original file line number Diff line number Diff line change @@ -759,8 +759,8 @@ BEGIN
759
759
WHEN CHR( 8) THEN buf := '\b'; -- backspace b = U+0008
760
760
WHEN CHR( 9) THEN buf := '\t'; -- tabulator t = U+0009
761
761
WHEN CHR(10) THEN buf := '\n'; -- newline n = U+000A
762
- WHEN CHR(13 ) THEN buf := '\f'; -- formfeed f = U+000C
763
- WHEN CHR(14 ) THEN buf := '\r'; -- carret r = U+000D
762
+ WHEN CHR(12 ) THEN buf := '\f'; -- formfeed f = U+000C
763
+ WHEN CHR(13 ) THEN buf := '\r'; -- carret r = U+000D
764
764
WHEN CHR(34) THEN buf := '\"';
765
765
WHEN CHR(47) THEN -- slash
766
766
IF (theEscapeSolitus) THEN
You can’t perform that action at this time.
0 commit comments