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

Diff for /mandoc/mdoc_term.c between version 1.130 and 1.131

version 1.130, 2010/05/24 21:51:20 version 1.131, 2010/05/26 10:39:35
Line 1192  termp_rv_pre(DECL_ARGS)
Line 1192  termp_rv_pre(DECL_ARGS)
         term_fontpop(p);          term_fontpop(p);
   
         term_word(p, "is set to indicate the error.");          term_word(p, "is set to indicate the error.");
           p->flags |= TERMP_SENTENCE;
   
         return(0);          return(0);
 }  }
Line 1224  termp_ex_pre(DECL_ARGS)
Line 1225  termp_ex_pre(DECL_ARGS)
                 term_word(p, "utility exits");                  term_word(p, "utility exits");
   
         term_word(p, "0 on success, and >0 if an error occurs.");          term_word(p, "0 on success, and >0 if an error occurs.");
           p->flags |= TERMP_SENTENCE;
   
         return(0);          return(0);
 }  }
Line 1425  termp_bt_pre(DECL_ARGS)
Line 1427  termp_bt_pre(DECL_ARGS)
 {  {
   
         term_word(p, "is currently in beta test.");          term_word(p, "is currently in beta test.");
           p->flags |= TERMP_SENTENCE;
         return(0);          return(0);
 }  }
   
Line 1445  termp_ud_pre(DECL_ARGS)
Line 1448  termp_ud_pre(DECL_ARGS)
 {  {
   
         term_word(p, "currently under development.");          term_word(p, "currently under development.");
           p->flags |= TERMP_SENTENCE;
         return(0);          return(0);
 }  }
   

Legend:
Removed from v.1.130  
changed lines
  Added in v.1.131

CVSweb