CVSROOT: /cvs Module name: src Changes by: schwa...@cvs.openbsd.org 2010/12/02 13:40:43
Modified files: usr.bin/mandoc : main.c Log message: Track the parser status both per file (file_status), such that we can for example skip rendering on FATAL parsing errors, and globally (exit_status), such that we know what to return. Without this, following files produced no rendered output once a single file suffered from a FATAL error. Bug reported by kristaps@, fix by me.