mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-09 18:31:04 +00:00
Strip quotes from PackageOptions. Amends a77c84a0b4
This commit is contained in:
parent
18890c42b9
commit
1449fbf9ae
@ -693,7 +693,7 @@ TextClass::ReturnValues TextClass::read(Lexer & lexrc, ReadType rt)
|
||||
string const pkg = lexrc.getString();
|
||||
lexrc.eatLine();
|
||||
string const options = lexrc.getString();
|
||||
package_options_[pkg] = options;
|
||||
package_options_[pkg] = trim(options, "\"");
|
||||
break;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user