Demonstration of groff .psbb request handling code, for EPS and PDF input files
Revisão | d235cff386ab2bf9cdad60a4aacbd94abe7506ae (tree) |
---|---|
Hora | 2021-10-21 03:13:49 |
Autor | ![]() |
Commiter | Keith Marshall |
Correctly handle lexical scans of nested PDF dictionaries.
* psbblex.l [PDFDICT] ("<<"): Add missing pattern rule; it causes a
recursive push of the nested dictionary scanning state.
@@ -370,6 +370,7 @@ static int pdf_trailer( void ) | ||
370 | 370 | )); |
371 | 371 | DEBUG_PUSH_STATE( PDFIGNORE ); |
372 | 372 | } |
373 | +"<<" { DEBUG_PUSH_STATE( PDFDICT ); } | |
373 | 374 | ">>" { DEBUG_POP_STATE(); } |
374 | 375 | .|\n |
375 | 376 | } |