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

version 1.236, 2011/10/16 12:20:34 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 1925  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 1988  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.236  
changed lines
  Added in v.1.237

CVSweb