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

Diff for /mandoc/man.c between version 1.126 and 1.127

version 1.126, 2014/03/23 12:26:58 version 1.127, 2014/03/23 20:57:27
Line 720  man_deroff(char **dest, const struct man_node *n)
Line 720  man_deroff(char **dest, const struct man_node *n)
                 return;                  return;
         }          }
   
         /* Skip leading whitespace. */          /* Skip leading whitespace and escape sequences. */
   
         for (cp = n->string; '\0' != *cp; cp++)          cp = n->string;
                 if (0 == isspace((unsigned char)*cp))          while ('\0' != *cp) {
                   if ('\\' == *cp) {
                           cp++;
                           mandoc_escape((const char **)&cp, NULL, NULL);
                   } else if (isspace((unsigned char)*cp))
                           cp++;
                   else
                         break;                          break;
           }
   
         /* Skip trailing whitespace. */          /* Skip trailing whitespace. */
   

Legend:
Removed from v.1.126  
changed lines
  Added in v.1.127

CVSweb