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

Diff for /mandoc/Attic/strings.c between version 1.26 and 1.29

version 1.26, 2009/03/06 14:13:47 version 1.29, 2009/03/14 05:36:07
Line 16 
Line 16 
  * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR   * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
  * PERFORMANCE OF THIS SOFTWARE.   * PERFORMANCE OF THIS SOFTWARE.
  */   */
   #include <sys/types.h>
   
 #include <assert.h>  #include <assert.h>
 #include <ctype.h>  #include <ctype.h>
 #include <stdlib.h>  #include <stdlib.h>
 #include <stdio.h>  #include <stdio.h>
 #include <string.h>  #include <string.h>
 #ifndef __OpenBSD__  
 #include <time.h>  
 #endif  
   
 #include "private.h"  #include "private.h"
   
Line 84  mdoc_isescape(const char *p)
Line 83  mdoc_isescape(const char *p)
                 /* FALLTHROUGH */                  /* FALLTHROUGH */
         case ('`'):          case ('`'):
                 /* FALLTHROUGH */                  /* FALLTHROUGH */
           case ('q'):
                   /* FALLTHROUGH */
         case ('-'):          case ('-'):
                 /* FALLTHROUGH */                  /* FALLTHROUGH */
         case (' '):          case (' '):
                   /* FALLTHROUGH */
           case ('|'):
                 /* FALLTHROUGH */                  /* FALLTHROUGH */
         case ('&'):          case ('&'):
                 /* FALLTHROUGH */                  /* FALLTHROUGH */

Legend:
Removed from v.1.26  
changed lines
  Added in v.1.29

CVSweb