[script] Fix \t escapes in string literals.

Typo \r -> \t.
This commit is contained in:
M Joonas Pihlaja 2008-12-09 05:59:19 +02:00 committed by Chris Wilson
parent 265ebd372a
commit 738cb32745

View file

@ -980,7 +980,7 @@ scan_string (csi_t *ctx, csi_scanner_t *scan, csi_file_t *src)
string_add (ctx, scan, '\r');
break;
case 't':
string_add (ctx, scan, '\r');
string_add (ctx, scan, '\t');
break;
case 'b':
string_add (ctx, scan, '\b');