mirror of
https://github.com/ArthurSonzogni/Diagon.git
synced 2026-08-29 08:34:44 +08:00
Fix default value for interpret_backslash_n
This commit is contained in:
@@ -282,7 +282,7 @@ std::string Sequence::Translate(const std::string& input,
|
||||
|
||||
auto options = SerializeOption(options_string);
|
||||
ascii_only_ = (options["ascii_only"] == "true");
|
||||
interpret_backslash_n_ = (options["interpret_backslash_n"] == "true");
|
||||
interpret_backslash_n_ = (options["interpret_backslash_n"] != "false");
|
||||
|
||||
ComputeInternalRepresentation(input);
|
||||
UniformizeInternalRepresentation();
|
||||
|
||||
Reference in New Issue
Block a user