mirror of
https://git.code.sf.net/p/zint/code
synced 2025-05-16 16:14:36 -04:00
escape_char_process: "\xNN" simple convert (reverts [dddf29]), "\uNNNN" BMP check
This commit is contained in:
parent
2f48b69138
commit
0b80592f87
5 changed files with 181 additions and 109 deletions
|
@ -430,6 +430,8 @@ static int batch_process(struct zint_symbol *symbol, char *filename, int mirror_
|
|||
i++;
|
||||
if (buffer[i] == 'x') {
|
||||
i += 2;
|
||||
} else if (buffer[i] == 'u') {
|
||||
i += 4;
|
||||
}
|
||||
}
|
||||
i++;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue