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

Diff for /mandoc/Attic/action.c between version 1.40 and 1.41

version 1.40, 2009/03/11 00:39:58 version 1.41, 2009/03/12 16:30:50
Line 59  static int  post_dt(struct mdoc *);
Line 59  static int  post_dt(struct mdoc *);
 static  int      post_nm(struct mdoc *);  static  int      post_nm(struct mdoc *);
 static  int      post_os(struct mdoc *);  static  int      post_os(struct mdoc *);
 static  int      post_sh(struct mdoc *);  static  int      post_sh(struct mdoc *);
 static  int      post_ex(struct mdoc *);  static  int      post_std(struct mdoc *);
 static  int      post_prologue(struct mdoc *);  static  int      post_prologue(struct mdoc *);
   
 const   struct actions mdoc_actions[MDOC_MAX] = {  const   struct actions mdoc_actions[MDOC_MAX] = {
Line 85  const struct actions mdoc_actions[MDOC_MAX] = {
Line 85  const struct actions mdoc_actions[MDOC_MAX] = {
         { NULL }, /* Dv */          { NULL }, /* Dv */
         { NULL }, /* Er */          { NULL }, /* Er */
         { NULL }, /* Ev */          { NULL }, /* Ev */
         { post_ex }, /* Ex */          { post_std }, /* Ex */
         { NULL }, /* Fa */          { NULL }, /* Fa */
         { NULL }, /* Fd */          { NULL }, /* Fd */
         { NULL }, /* Fl */          { NULL }, /* Fl */
Line 99  const struct actions mdoc_actions[MDOC_MAX] = {
Line 99  const struct actions mdoc_actions[MDOC_MAX] = {
         { NULL }, /* Op */          { NULL }, /* Op */
         { NULL }, /* Ot */          { NULL }, /* Ot */
         { NULL }, /* Pa */          { NULL }, /* Pa */
         { NULL }, /* Rv */          { post_std }, /* Rv */
         { NULL }, /* St */          { NULL }, /* St */
         { NULL }, /* Va */          { NULL }, /* Va */
         { NULL }, /* Vt */          { NULL }, /* Vt */
Line 177  const struct actions mdoc_actions[MDOC_MAX] = {
Line 177  const struct actions mdoc_actions[MDOC_MAX] = {
         { NULL }, /* Brq */          { NULL }, /* Brq */
         { NULL }, /* Bro */          { NULL }, /* Bro */
         { NULL }, /* Brc */          { NULL }, /* Brc */
           { NULL }, /* %C */
 };  };
   
   
Line 228  nwarn(struct mdoc *m, const struct mdoc_node *n, enum 
Line 229  nwarn(struct mdoc *m, const struct mdoc_node *n, enum 
   
   
 static int  static int
 post_ex(struct mdoc *mdoc)  post_std(struct mdoc *mdoc)
 {  {
   
         /*          /*
          * If `.Ex -std' is invoked without an argument, fill it in with           * If '-std' is invoked without an argument, fill it in with our
          * our name (if it's been set).           * name (if it's been set).
          */           */
   
         if (NULL == mdoc->last->args)          if (NULL == mdoc->last->args)

Legend:
Removed from v.1.40  
changed lines
  Added in v.1.41

CVSweb