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

Diff for /mandoc/mdoc_macro.c between version 1.38 and 1.39

version 1.38, 2009/10/26 17:05:44 version 1.39, 2010/01/01 13:17:58
Line 808  in_line(MACRO_PROT_ARGS)
Line 808  in_line(MACRO_PROT_ARGS)
                         cnt++;                          cnt++;
                 if ( ! mdoc_word_alloc(m, line, la, p))                  if ( ! mdoc_word_alloc(m, line, la, p))
                         return(0);                          return(0);
   
                   /*
                    * `Fl' macros have their scope re-opened with each new
                    * word so that the `-' can be added to each one without
                    * having to parse out spaces.
                    */
                   if (0 == lastpunct && MDOC_Fl == tok) {
                           if ( ! rew_elem(m, tok))
                                   return(0);
                           lastpunct = 1;
                   }
         }          }
   
         if (0 == lastpunct && ! rew_elem(m, tok))          if (0 == lastpunct && ! rew_elem(m, tok))

Legend:
Removed from v.1.38  
changed lines
  Added in v.1.39

CVSweb