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

Diff for /mandoc/mdoc_html.c between version 1.98 and 1.99

version 1.98, 2010/07/19 11:11:54 version 1.99, 2010/07/23 00:08:57
Line 125  static int    mdoc_pq_pre(MDOC_ARGS);
Line 125  static int    mdoc_pq_pre(MDOC_ARGS);
 static  int               mdoc_rs_pre(MDOC_ARGS);  static  int               mdoc_rs_pre(MDOC_ARGS);
 static  int               mdoc_rv_pre(MDOC_ARGS);  static  int               mdoc_rv_pre(MDOC_ARGS);
 static  int               mdoc_sh_pre(MDOC_ARGS);  static  int               mdoc_sh_pre(MDOC_ARGS);
   static  int               mdoc_sm_pre(MDOC_ARGS);
 static  int               mdoc_sp_pre(MDOC_ARGS);  static  int               mdoc_sp_pre(MDOC_ARGS);
 static  void              mdoc_sq_post(MDOC_ARGS);  static  void              mdoc_sq_post(MDOC_ARGS);
 static  int               mdoc_sq_pre(MDOC_ARGS);  static  int               mdoc_sq_pre(MDOC_ARGS);
Line 227  static const struct htmlmdoc mdocs[MDOC_MAX] = {
Line 228  static const struct htmlmdoc mdocs[MDOC_MAX] = {
         {NULL, NULL}, /* Sc */          {NULL, NULL}, /* Sc */
         {mdoc_sq_pre, mdoc_sq_post}, /* So */          {mdoc_sq_pre, mdoc_sq_post}, /* So */
         {mdoc_sq_pre, mdoc_sq_post}, /* Sq */          {mdoc_sq_pre, mdoc_sq_post}, /* Sq */
         {NULL, NULL}, /* Sm */ /* FIXME - no idea. */          {mdoc_sm_pre, NULL}, /* Sm */
         {mdoc_sx_pre, NULL}, /* Sx */          {mdoc_sx_pre, NULL}, /* Sx */
         {mdoc_sy_pre, NULL}, /* Sy */          {mdoc_sy_pre, NULL}, /* Sy */
         {NULL, NULL}, /* Tn */          {NULL, NULL}, /* Tn */
Line 1715  mdoc_fn_pre(MDOC_ARGS)
Line 1716  mdoc_fn_pre(MDOC_ARGS)
         print_text(h, ")");          print_text(h, ")");
         if (MDOC_SYNPRETTY & n->flags)          if (MDOC_SYNPRETTY & n->flags)
                 print_text(h, ";");                  print_text(h, ";");
   
           return(0);
   }
   
   
   /* ARGSUSED */
   static int
   mdoc_sm_pre(MDOC_ARGS)
   {
   
           assert(n->child && MDOC_TEXT == n->child->type);
           if (0 == strcmp("on", n->child->string)) {
                   /* FIXME: no p->col to check... */
                   h->flags &= ~HTML_NOSPACE;
                   h->flags &= ~HTML_NONOSPACE;
           } else
                   h->flags |= HTML_NONOSPACE;
   
         return(0);          return(0);
 }  }

Legend:
Removed from v.1.98  
changed lines
  Added in v.1.99

CVSweb