1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 13:27:35 +00:00

LibPDF: Fix symbol for text_next_line_show_string_set_spacing operator

It's `"`, not `''`.

Now the `text_next_line_show_string_set_spacing` gets called and logs
a TODO at page render time if `"` is used in a PDF:

    warning: Rendering of feature not supported:
        draw operation: text_next_line_show_string_set_spacing

It caused a parse error (also at page render time) previously:

    [parse_value @ .../LibPDF/Parser.cpp:104]
        Parser error at offset 611: Unexpected char """
This commit is contained in:
Nico Weber 2023-07-22 11:11:53 -04:00 committed by Tim Flynn
parent 18b86b1868
commit 77e6dbab33
2 changed files with 3 additions and 3 deletions

View file

@ -526,7 +526,7 @@ PDFErrorOr<Vector<Operator>> Parser::parse_operators()
Vector<Value> operator_args;
constexpr static auto is_operator_char = [](char ch) {
return isalpha(ch) || ch == '*' || ch == '\'';
return isalpha(ch) || ch == '*' || ch == '\'' || ch == '"';
};
m_reader.consume_whitespace();