yochju / latex-makefile

Automatically exported from code.google.com/p/latex-makefile
Other
0 stars 0 forks source link

Package warnings are overlooked #38

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
This warning is not reported by latex-makefile, even though it is on the log:

Package natbib Warning: Citation `cytron etc' on page 7 undefined on input line
 17.

This patch seems to fix it.

Index: Makefile
===================================================================
--- Makefile    (revision 1929)
+++ Makefile    (working copy)
@@ -1287,6 +1287,7 @@
    -e '}' \
    -e 's/^! *LaTeX Error:.*/$(C_ERROR)&$(C_RESET)/' -e 't' \
    -e 's/^LaTeX Warning:.*/$(C_WARNING)&$(C_RESET)/' -e 't' \
+   -e 's/^Package .* Warning:.*/$(C_WARNING)&$(C_RESET)/' -e 't' \
    -e 's/^Underfull.*/$(C_UNDERFULL)&$(C_RESET)/' -e 't' \
    -e 's/^Overfull.*/$(C_OVERFULL)&$(C_RESET)/' -e 't' \
    $(if $(VERBOSE),,-e 'd')

Thanks,
Paul

Original issue reported on code.google.com by paul.biggar on 17 Aug 2009 at 6:50

GoogleCodeExporter commented 9 years ago
Thanks for the patch!  r53 should fix this - would you try it out and let me 
know 
whether it does?

Original comment by shiblon on 17 Aug 2009 at 8:14

GoogleCodeExporter commented 9 years ago
Works great, thanks.

Original comment by paul.biggar on 17 Aug 2009 at 8:18