|
From: Andre W. <wo...@us...> - 2004-10-25 15:24:28
|
Hi Michael, On 25.10.04, Michael Schindler wrote: > Update of /cvsroot/pyx/pyx/pyx > In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv31341 > > Modified Files: > text.py > Log Message: > texmessage parser has to skip an empty message from LaTeX > > Index: text.py > =================================================================== > RCS file: /cvsroot/pyx/pyx/pyx/text.py,v > retrieving revision 1.179 > retrieving revision 1.180 > diff -C2 -d -r1.179 -r1.180 > *** text.py 19 Oct 2004 14:32:05 -0000 1.179 > --- text.py 25 Oct 2004 14:24:08 -0000 1.180 > *************** > *** 203,206 **** > --- 203,210 ---- > > def check(self, texrunner): > + # skip when the message is empty (this occurs after LaTeX's message about Font Substitutions) > + if not texrunner.texmessageparsed: > + return > + > try: > s1, s2 = texrunner.texmessageparsed.split("(%s.aux)" % texrunner.texfilename, 1) I don't think you need this. Why? I want a use case. André -- by _ _ _ Dr. André Wobst / \ \ / ) wo...@us..., http://www.wobsta.de/ / _ \ \/\/ / PyX - High quality PostScript figures with Python & TeX (_/ \_)_/\_/ visit http://pyx.sourceforge.net/ |