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

Diff for /mandoc/Attic/mdoc_action.c between version 1.72 and 1.73

version 1.72, 2010/06/27 15:52:41 version 1.73, 2010/07/01 22:35:54
Line 457  post_sh(POST_ARGS)
Line 457  post_sh(POST_ARGS)
         if (SEC_NONE == m->lastnamed || SEC_CUSTOM != sec)          if (SEC_NONE == m->lastnamed || SEC_CUSTOM != sec)
                 m->lastnamed = sec;                  m->lastnamed = sec;
   
           /*
            * Switch the parser's SYNOPSIS mode, to be copied
            * into individual nodes when creating them.
            * Note that this mode can also be set and unset
            * using the roff nS register.
            */
           if (SEC_SYNOPSIS == sec)
                   m->flags |= MDOC_SYNOPSIS;
           else
                   m->flags &= ~MDOC_SYNOPSIS;
   
         /* Some sections only live in certain manual sections. */          /* Some sections only live in certain manual sections. */
   
         switch ((m->lastsec = sec)) {          switch ((m->lastsec = sec)) {

Legend:
Removed from v.1.72  
changed lines
  Added in v.1.73

CVSweb