mirror of
https://gitlab.freedesktop.org/cairo/cairo.git
synced 2026-04-25 15:30:38 +02:00
[script] Fix \t escapes in string literals.
Typo \r -> \t.
This commit is contained in:
parent
265ebd372a
commit
738cb32745
1 changed files with 1 additions and 1 deletions
|
|
@ -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');
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue