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

Diff for /mandoc/man_term.c between version 1.217 and 1.219

version 1.217, 2018/08/18 14:02:56 version 1.219, 2018/08/18 17:07:23
Line 117  static const struct man_term_act man_term_acts[MAN_MAX
Line 117  static const struct man_term_act man_term_acts[MAN_MAX
         { pre_I, NULL, 0 }, /* I */          { pre_I, NULL, 0 }, /* I */
         { pre_alternate, NULL, 0 }, /* IR */          { pre_alternate, NULL, 0 }, /* IR */
         { pre_alternate, NULL, 0 }, /* RI */          { pre_alternate, NULL, 0 }, /* RI */
         { pre_literal, NULL, 0 }, /* nf */          { pre_literal, NULL, MAN_NOTEXT }, /* nf */
         { pre_literal, NULL, 0 }, /* fi */          { pre_literal, NULL, MAN_NOTEXT }, /* fi */
         { NULL, NULL, 0 }, /* RE */          { NULL, NULL, 0 }, /* RE */
         { pre_RS, post_RS, 0 }, /* RS */          { pre_RS, post_RS, 0 }, /* RS */
         { pre_DT, NULL, 0 }, /* DT */          { pre_DT, NULL, 0 }, /* DT */
Line 872  pre_SY(DECL_ARGS)
Line 872  pre_SY(DECL_ARGS)
         }          }
   
         nn = n->parent->head->child;          nn = n->parent->head->child;
         len = nn == NULL ? 0 : term_strlen(p, nn->string) + 1;          len = nn == NULL ? 1 : term_strlen(p, nn->string) + 1;
   
         switch (n->type) {          switch (n->type) {
         case ROFFT_HEAD:          case ROFFT_HEAD:

Legend:
Removed from v.1.217  
changed lines
  Added in v.1.219

CVSweb