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

Diff for /mandoc/mdoc_validate.c between version 1.197 and 1.200

version 1.197, 2013/10/21 23:47:58 version 1.200, 2014/01/06 22:39:25
Line 1 
Line 1 
 /*      $Id$ */  /*      $Id$ */
 /*  /*
  * Copyright (c) 2008-2012 Kristaps Dzonsons <kristaps@bsd.lv>   * Copyright (c) 2008-2012 Kristaps Dzonsons <kristaps@bsd.lv>
  * Copyright (c) 2010, 2011, 2012, 2013 Ingo Schwarze <schwarze@openbsd.org>   * Copyright (c) 2010-2014 Ingo Schwarze <schwarze@openbsd.org>
    * Copyright (c) 2010 Joerg Sonnenberger <joerg@netbsd.org>
  *   *
  * Permission to use, copy, modify, and distribute this software for any   * Permission to use, copy, modify, and distribute this software for any
  * purpose with or without fee is hereby granted, provided that the above   * purpose with or without fee is hereby granted, provided that the above
Line 1991  post_sh_head(POST_ARGS)
Line 1992  post_sh_head(POST_ARGS)
         /* The SYNOPSIS gets special attention in other areas. */          /* The SYNOPSIS gets special attention in other areas. */
   
         if (SEC_SYNOPSIS == sec) {          if (SEC_SYNOPSIS == sec) {
                 roff_setreg(mdoc->roff, "nS", 1);                  roff_setreg(mdoc->roff, "nS", 1, '=');
                 mdoc->flags |= MDOC_SYNOPSIS;                  mdoc->flags |= MDOC_SYNOPSIS;
         } else {          } else {
                 roff_setreg(mdoc->roff, "nS", 0);                  roff_setreg(mdoc->roff, "nS", 0, '=');
                 mdoc->flags &= ~MDOC_SYNOPSIS;                  mdoc->flags &= ~MDOC_SYNOPSIS;
         }          }
   
Line 2183  post_dd(POST_ARGS)
Line 2184  post_dd(POST_ARGS)
   
         n = mdoc->last;          n = mdoc->last;
         if (NULL == n->child || '\0' == n->child->string[0]) {          if (NULL == n->child || '\0' == n->child->string[0]) {
                 mdoc->meta.date = mandoc_normdate                  mdoc->meta.date = mdoc->quick ? mandoc_strdup("") :
                         (mdoc->parse, NULL, n->line, n->pos);                      mandoc_normdate(mdoc->parse, NULL, n->line, n->pos);
                 return(1);                  return(1);
         }          }
   
Line 2195  post_dd(POST_ARGS)
Line 2196  post_dd(POST_ARGS)
         }          }
   
         assert(c);          assert(c);
         mdoc->meta.date = mandoc_normdate          mdoc->meta.date = mdoc->quick ? mandoc_strdup(buf) :
                 (mdoc->parse, buf, n->line, n->pos);              mandoc_normdate(mdoc->parse, buf, n->line, n->pos);
   
         return(1);          return(1);
 }  }

Legend:
Removed from v.1.197  
changed lines
  Added in v.1.200

CVSweb