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

Diff for /mandoc/Attic/strings.c between version 1.27 and 1.32

version 1.27, 2009/03/09 13:17:49 version 1.32, 2009/03/23 14:22:11
Line 24 
Line 24 
 #include <stdio.h>  #include <stdio.h>
 #include <string.h>  #include <string.h>
   
 #include "private.h"  #include "libmdoc.h"
   
 /*  /*
  * Various string-literal operations:  converting scalars to and from   * Various string-literal operations:  converting scalars to and from
Line 83  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 ('%'):
                   /* FALLTHROUGH */
         case (' '):          case (' '):
                 /* FALLTHROUGH */                  /* FALLTHROUGH */
           case ('|'):
                   /* FALLTHROUGH */
         case ('&'):          case ('&'):
                 /* FALLTHROUGH */                  /* FALLTHROUGH */
         case ('.'):          case ('.'):
                   /* FALLTHROUGH */
           case (':'):
                 /* FALLTHROUGH */                  /* FALLTHROUGH */
         case ('e'):          case ('e'):
                 return(2);                  return(2);

Legend:
Removed from v.1.27  
changed lines
  Added in v.1.32

CVSweb