mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-22 10:00:33 +00:00
Tools(listFontWithLang.pl): Allow the include of the separator glyph in the list of chars
For instance: listFontWithLang.pl -c 'a-z\,A-Z' is not the same now as listFontWithLang.pl -c 'a-z,A-Z'
This commit is contained in:
parent
40e071c7cb
commit
b030dc5b8b
@ -101,7 +101,7 @@ sub handleOptions($)
|
||||
}
|
||||
else {
|
||||
if (defined($optionsDef{$option}->{listsep})) {
|
||||
my @list = split($optionsDef{$option}->{listsep}, $value);
|
||||
my @list = split(/(?<!\\)$optionsDef{$option}->{listsep}/, $value);
|
||||
$options{$fieldname} = \@list;
|
||||
}
|
||||
else {
|
||||
|
Loading…
Reference in New Issue
Block a user