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

Diff for /mandoc/Attic/mdoc_strings.c between version 1.20 and 1.23

version 1.20, 2010/05/15 08:54:04 version 1.23, 2010/06/19 20:46:28
Line 1 
Line 1 
 /*      $Id$ */  /*      $Id$ */
 /*  /*
  * Copyright (c) 2008 Kristaps Dzonsons <kristaps@kth.se>   * Copyright (c) 2008 Kristaps Dzonsons <kristaps@bsd.lv>
  *   *
  * Permission to use, copy, modify, and distribute this software for any   * Permission to use, copy, modify, and distribute this software for any
  * purpose with or without fee is hereby granted, provided that the above   * purpose with or without fee is hereby granted, provided that the above
Line 26 
Line 26 
 #include <string.h>  #include <string.h>
 #include <time.h>  #include <time.h>
   
   #include "mandoc.h"
 #include "libmdoc.h"  #include "libmdoc.h"
   
 static  const char * const secnames[SEC__MAX] = {  static  const char * const secnames[SEC__MAX] = {
Line 97  mdoc_isdelim(const char *p)
Line 98  mdoc_isdelim(const char *p)
 {  {
   
         if ('\0' == p[0])          if ('\0' == p[0])
                 return(0);                  return(DELIM_NONE);
         if ('\0' == p[1])          if ('\0' == p[1])
                 return(mdoc_iscdelim(p[0]));                  return(mdoc_iscdelim(p[0]));
   

Legend:
Removed from v.1.20  
changed lines
  Added in v.1.23

CVSweb