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

Diff for /mandoc/mandoc.c between version 1.81 and 1.82

version 1.81, 2014/07/01 22:37:15 version 1.82, 2014/07/06 18:37:34
Line 200  mandoc_escape(const char **end, const char **start, in
Line 200  mandoc_escape(const char **end, const char **start, in
         case 'v':          case 'v':
                 /* FALLTHROUGH */                  /* FALLTHROUGH */
         case 'x':          case 'x':
                 if (strchr("\0 %&()*+-./0123456789:<=>", **start))                  if (strchr(" %&()*+-./0123456789:<=>", **start)) {
                           ++*end;
                         return(ESCAPE_ERROR);                          return(ESCAPE_ERROR);
                   }
                 gly = ESCAPE_IGNORE;                  gly = ESCAPE_IGNORE;
                 term = **start;                  term = **start;
                 *start = ++*end;                  *start = ++*end;

Legend:
Removed from v.1.81  
changed lines
  Added in v.1.82

CVSweb