• R/O
  • HTTP
  • SSH
  • HTTPS

Commit

Tags
No Tags

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

Demonstration of groff .psbb request handling code, for EPS and PDF input files


Commit MetaInfo

Revisãod235cff386ab2bf9cdad60a4aacbd94abe7506ae (tree)
Hora2021-10-21 03:13:49
AutorKeith Marshall <keith@user...>
CommiterKeith Marshall

Mensagem de Log

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.

Mudança Sumário

Diff

--- a/psbblex.l
+++ b/psbblex.l
@@ -370,6 +370,7 @@ static int pdf_trailer( void )
370370 ));
371371 DEBUG_PUSH_STATE( PDFIGNORE );
372372 }
373+"<<" { DEBUG_PUSH_STATE( PDFDICT ); }
373374 ">>" { DEBUG_POP_STATE(); }
374375 .|\n
375376 }