[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.215 and 1.216

version 1.215, 2018/08/18 02:08:27 version 1.216, 2018/08/18 13:05:10
Line 346  pre_OP(DECL_ARGS)
Line 346  pre_OP(DECL_ARGS)
 {  {
   
         term_word(p, "[");          term_word(p, "[");
         p->flags |= TERMP_NOSPACE;          p->flags |= TERMP_KEEP | TERMP_NOSPACE;
   
         if (NULL != (n = n->child)) {          if (NULL != (n = n->child)) {
                 term_fontrepl(p, TERMFONT_BOLD);                  term_fontrepl(p, TERMFONT_BOLD);
Line 358  pre_OP(DECL_ARGS)
Line 358  pre_OP(DECL_ARGS)
         }          }
   
         term_fontrepl(p, TERMFONT_NONE);          term_fontrepl(p, TERMFONT_NONE);
           p->flags &= ~TERMP_KEEP;
         p->flags |= TERMP_NOSPACE;          p->flags |= TERMP_NOSPACE;
         term_word(p, "]");          term_word(p, "]");
         return 0;          return 0;

Legend:
Removed from v.1.215  
changed lines
  Added in v.1.216

CVSweb