Strip quotes from PackageOptions. Amends a77c84a0b4

(cherry picked from commit 1449fbf9ae)
This commit is contained in:
Juergen Spitzmueller 2024-06-06 06:58:33 +02:00
parent 312dacb7f3
commit d4bd0f9b1e
2 changed files with 4 additions and 1 deletions

View File

@ -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;
}

View File

@ -45,8 +45,11 @@ What's new
- fix overflow of appendix red frame in document-bottom grey area.
* INTERNALS
- Re-allow the use of quoted argument to PackageOptions layout tag.
* DOCUMENTATION AND LOCALIZATION