[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.128

version 1.126, 2014/03/23 12:26:58 version 1.128, 2014/03/30 19:47:48
Line 45  const char *const __man_macronames[MAN_MAX] = {   
Line 45  const char *const __man_macronames[MAN_MAX] = {   
         "fi",           "RE",           "RS",           "DT",          "fi",           "RE",           "RS",           "DT",
         "UC",           "PD",           "AT",           "in",          "UC",           "PD",           "AT",           "in",
         "ft",           "OP",           "EX",           "EE",          "ft",           "OP",           "EX",           "EE",
         "UR",           "UE"          "UR",           "UE",           "ll"
         };          };
   
 const   char * const *man_macronames = __man_macronames;  const   char * const *man_macronames = __man_macronames;
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.128

CVSweb