[BACK]Return to mdoc.c CVS log [TXT][DIR] Up to [cvsweb.bsd.lv] / mandoc

Diff for /mandoc/mdoc.c between version 1.105 and 1.107

version 1.105, 2009/09/16 14:40:56 version 1.107, 2009/09/24 15:01:06
Line 14 
Line 14 
  * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF   * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.   * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  */   */
   #include <sys/types.h>
   
 #include <assert.h>  #include <assert.h>
 #include <ctype.h>  #include <ctype.h>
 #include <stdarg.h>  #include <stdarg.h>
Line 74  const char *const __mdoc_merrnames[MERRMAX] = {   
Line 76  const char *const __mdoc_merrnames[MERRMAX] = {   
         "unclosed explicit scope", /* EOPEN */          "unclosed explicit scope", /* EOPEN */
         "unterminated quoted phrase", /* EQUOTPHR */          "unterminated quoted phrase", /* EQUOTPHR */
         "closure macro without prior context", /* ENOCTX */          "closure macro without prior context", /* ENOCTX */
         "no description found for library" /* ELIB */          "no description found for library", /* ELIB */
           "bad child for parent context", /* EBADCHILD */
 };  };
   
 const   char *const __mdoc_macronames[MDOC_MAX] = {  const   char *const __mdoc_macronames[MDOC_MAX] = {

Legend:
Removed from v.1.105  
changed lines
  Added in v.1.107

CVSweb