mirror of
https://github.com/zint/zint
synced 2024-11-16 20:57:25 +13:00
Correct processing of escape char mode
This commit is contained in:
@ -627,7 +627,7 @@ int main(int argc, char **argv) {
|
||||
}
|
||||
}
|
||||
if (!strcmp(long_options[option_index].name, "esc")) {
|
||||
if (!(my_symbol->input_mode &= ESCAPE_MODE)) {
|
||||
if (!(my_symbol->input_mode & ESCAPE_MODE)) {
|
||||
my_symbol->input_mode += ESCAPE_MODE;
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user