[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.235 and 1.237

version 1.235, 2011/09/20 09:02:23 version 1.237, 2011/11/03 20:36:59
Line 194  static const struct termact termacts[MDOC_MAX] = {
Line 194  static const struct termact termacts[MDOC_MAX] = {
         { NULL, NULL }, /* Ec */ /* FIXME: no space */          { NULL, NULL }, /* Ec */ /* FIXME: no space */
         { NULL, NULL }, /* Ef */          { NULL, NULL }, /* Ef */
         { termp_under_pre, NULL }, /* Em */          { termp_under_pre, NULL }, /* Em */
         { NULL, NULL }, /* Eo */          { termp_quote_pre, termp_quote_post }, /* Eo */
         { termp_xx_pre, NULL }, /* Fx */          { termp_xx_pre, NULL }, /* Fx */
         { termp_bold_pre, NULL }, /* Ms */          { termp_bold_pre, NULL }, /* Ms */
         { termp_igndelim_pre, NULL }, /* No */          { termp_igndelim_pre, NULL }, /* No */
Line 584  print_bvspace(struct termp *p, 
Line 584  print_bvspace(struct termp *p, 
 {  {
         const struct mdoc_node  *nn;          const struct mdoc_node  *nn;
   
           assert(n);
   
         term_newln(p);          term_newln(p);
   
         if (MDOC_Bd == bl->tok && bl->norm->Bd.comp)          if (MDOC_Bd == bl->tok && bl->norm->Bd.comp)
Line 1923  termp_quote_pre(DECL_ARGS)
Line 1925  termp_quote_pre(DECL_ARGS)
         case (MDOC_Dq):          case (MDOC_Dq):
                 term_word(p, "``");                  term_word(p, "``");
                 break;                  break;
           case (MDOC_Eo):
                   break;
         case (MDOC_Po):          case (MDOC_Po):
                 /* FALLTHROUGH */                  /* FALLTHROUGH */
         case (MDOC_Pq):          case (MDOC_Pq):
Line 1986  termp_quote_post(DECL_ARGS)
Line 1990  termp_quote_post(DECL_ARGS)
                 /* FALLTHROUGH */                  /* FALLTHROUGH */
         case (MDOC_Dq):          case (MDOC_Dq):
                 term_word(p, "''");                  term_word(p, "''");
                   break;
           case (MDOC_Eo):
                 break;                  break;
         case (MDOC_Po):          case (MDOC_Po):
                 /* FALLTHROUGH */                  /* FALLTHROUGH */

Legend:
Removed from v.1.235  
changed lines
  Added in v.1.237

CVSweb