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

Diff for /mandoc/man_macro.c between version 1.138 and 1.142

version 1.138, 2018/12/30 00:49:55 version 1.142, 2018/12/31 10:04:39
Line 63  static const struct man_macro man_macros[MAN_MAX - MAN
Line 63  static const struct man_macro man_macros[MAN_MAX - MAN
         { in_line_eoln, MAN_NSCOPED | MAN_ESCOPED | MAN_JOIN }, /* I */          { in_line_eoln, MAN_NSCOPED | MAN_ESCOPED | MAN_JOIN }, /* I */
         { in_line_eoln, 0 }, /* IR */          { in_line_eoln, 0 }, /* IR */
         { in_line_eoln, 0 }, /* RI */          { in_line_eoln, 0 }, /* RI */
         { in_line_eoln, MAN_NSCOPED }, /* nf */  
         { in_line_eoln, MAN_NSCOPED }, /* fi */  
         { blk_close, MAN_XSCOPE }, /* RE */          { blk_close, MAN_XSCOPE }, /* RE */
         { blk_exp, MAN_XSCOPE }, /* RS */          { blk_exp, MAN_XSCOPE }, /* RS */
         { in_line_eoln, 0 }, /* DT */          { in_line_eoln, 0 }, /* DT */
Line 340  blk_imp(MACRO_PROT_ARGS)
Line 338  blk_imp(MACRO_PROT_ARGS)
         struct roff_node *n;          struct roff_node *n;
   
         rew_scope(man, tok);          rew_scope(man, tok);
         n = roff_block_alloc(man, line, ppos, tok);          if (tok == MAN_SH || tok == MAN_SS)
         if (n->tok == MAN_SH || n->tok == MAN_SS)                  man->flags &= ~ROFF_NOFILL;
                 man->flags &= ~MAN_LITERAL;          roff_block_alloc(man, line, ppos, tok);
         n = roff_head_alloc(man, line, ppos, tok);          n = roff_head_alloc(man, line, ppos, tok);
   
         /* Add line arguments. */          /* Add line arguments. */
Line 383  in_line_eoln(MACRO_PROT_ARGS)
Line 381  in_line_eoln(MACRO_PROT_ARGS)
         roff_elem_alloc(man, line, ppos, tok);          roff_elem_alloc(man, line, ppos, tok);
         n = man->last;          n = man->last;
   
           if (tok == MAN_EX)
                   man->flags |= ROFF_NOFILL;
           else if (tok == MAN_EE)
                   man->flags &= ~ROFF_NOFILL;
   
         for (;;) {          for (;;) {
                 if (buf[*pos] != '\0' && (tok == MAN_fi || tok == MAN_nf)) {  
                         mandoc_msg(MANDOCERR_ARG_SKIP, line, *pos,  
                             "%s %s", roff_name[tok], buf + *pos);  
                         break;  
                 }  
                 if (buf[*pos] != '\0' && man->last != n && tok == MAN_PD) {                  if (buf[*pos] != '\0' && man->last != n && tok == MAN_PD) {
                         mandoc_msg(MANDOCERR_ARG_EXCESS, line, *pos,                          mandoc_msg(MANDOCERR_ARG_EXCESS, line, *pos,
                             "%s ... %s", roff_name[tok], buf + *pos);                              "%s ... %s", roff_name[tok], buf + *pos);
Line 431  in_line_eoln(MACRO_PROT_ARGS)
Line 429  in_line_eoln(MACRO_PROT_ARGS)
         /* Rewind our element scope. */          /* Rewind our element scope. */
   
         for ( ; man->last; man->last = man->last->parent) {          for ( ; man->last; man->last = man->last->parent) {
                 man_state(man, man->last);                  man->last->flags |= NODE_VALID;
                 if (man->last == n)                  if (man->last == n)
                         break;                          break;
         }          }
Line 445  in_line_eoln(MACRO_PROT_ARGS)
Line 443  in_line_eoln(MACRO_PROT_ARGS)
 void  void
 man_endparse(struct roff_man *man)  man_endparse(struct roff_man *man)
 {  {
   
         man_unscope(man, man->meta.first);          man_unscope(man, man->meta.first);
         man->flags &= ~MAN_LITERAL;  
 }  }
   
 static int  static int

Legend:
Removed from v.1.138  
changed lines
  Added in v.1.142

CVSweb