[BACK]Return to mdoc_action.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / mandoc

Diff for /src/usr.bin/mandoc/Attic/mdoc_action.c between version 1.41 and 1.42

version 1.41, 2010/06/26 17:56:43 version 1.42, 2010/07/01 22:31:52
Line 448 
Line 448 
         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.41  
changed lines
  Added in v.1.42