Add <font:$family> tag, closes #24

This commit is contained in:
Twan van Laarhoven
2020-05-12 22:27:57 +02:00
parent 41ed84e678
commit dbb6d34bb3
6 changed files with 22 additions and 5 deletions
+1 -1
View File
@@ -613,7 +613,7 @@ void check_tagged(const String& str, bool check_balance) {
}
for (size_t j = i + 1 ; j + 1 < end ; ++j) {
Char c = str.GetChar(j);
if (c == _(' ') || c == _('<')) {
if (c == ESCAPED_LANGLE || c == _('<')) {
queue_message(MESSAGE_WARNING, _("Invalid character in tag"));
}
}