mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-09 18:31:04 +00:00
Strip quotes from PackageOptions. Amends a77c84a0b4
(cherry picked from commit 1449fbf9ae
)
This commit is contained in:
parent
312dacb7f3
commit
d4bd0f9b1e
@ -693,7 +693,7 @@ TextClass::ReturnValues TextClass::read(Lexer & lexrc, ReadType rt)
|
|||||||
string const pkg = lexrc.getString();
|
string const pkg = lexrc.getString();
|
||||||
lexrc.eatLine();
|
lexrc.eatLine();
|
||||||
string const options = lexrc.getString();
|
string const options = lexrc.getString();
|
||||||
package_options_[pkg] = options;
|
package_options_[pkg] = trim(options, "\"");
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -45,8 +45,11 @@ What's new
|
|||||||
|
|
||||||
- fix overflow of appendix red frame in document-bottom grey area.
|
- fix overflow of appendix red frame in document-bottom grey area.
|
||||||
|
|
||||||
|
|
||||||
* INTERNALS
|
* INTERNALS
|
||||||
|
|
||||||
|
- Re-allow the use of quoted argument to PackageOptions layout tag.
|
||||||
|
|
||||||
|
|
||||||
* DOCUMENTATION AND LOCALIZATION
|
* DOCUMENTATION AND LOCALIZATION
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user