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

Diff for /mandoc/man.c between version 1.34 and 1.35

version 1.34, 2009/08/21 12:12:12 version 1.35, 2009/08/21 12:32:38
Line 41  const char *const __man_merrnames[WERRMAX] = {   
Line 41  const char *const __man_merrnames[WERRMAX] = {   
         "unknown macro", /* WMACRO */          "unknown macro", /* WMACRO */
         "ill-formed macro", /* WMACROFORM */          "ill-formed macro", /* WMACROFORM */
         "scope open on exit", /* WEXITSCOPE */          "scope open on exit", /* WEXITSCOPE */
         "no scope context" /* WNOSCOPE */          "no scope context", /* WNOSCOPE */
           "literal context already open", /* WOLITERAL */
           "no literal context open" /* WNLITERAL */
 };  };
   
 const   char *const __man_macronames[MAN_MAX] = {  const   char *const __man_macronames[MAN_MAX] = {
Line 391  static int
Line 393  static int
 man_ptext(struct man *m, int line, char *buf)  man_ptext(struct man *m, int line, char *buf)
 {  {
         int              i, j;          int              i, j;
   
           /* Literal free-form text whitespace is preserved. */
   
           if (MAN_LITERAL & m->flags) {
                   if ( ! man_word_alloc(m, line, 0, buf))
                           return(0);
                   goto descope;
           }
   
         /* First de-chunk and allocate words. */          /* First de-chunk and allocate words. */
   

Legend:
Removed from v.1.34  
changed lines
  Added in v.1.35

CVSweb