[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.218 and 1.219

version 1.218, 2014/12/23 13:48:57 version 1.219, 2015/01/23 14:21:01
Line 1 
Line 1 
 /*      $Id$ */  /*      $Id$ */
 /*  /*
  * Copyright (c) 2008-2011, 2014 Kristaps Dzonsons <kristaps@bsd.lv>   * Copyright (c) 2008-2011, 2014 Kristaps Dzonsons <kristaps@bsd.lv>
  * Copyright (c) 2014 Ingo Schwarze <schwarze@openbsd.org>   * Copyright (c) 2014, 2015 Ingo Schwarze <schwarze@openbsd.org>
  *   *
  * Permission to use, copy, modify, and distribute this software for any   * Permission to use, copy, modify, and distribute this software for any
  * purpose with or without fee is hereby granted, provided that the above   * purpose with or without fee is hereby granted, provided that the above
Line 2084  mdoc_quote_pre(MDOC_ARGS)
Line 2084  mdoc_quote_pre(MDOC_ARGS)
         case MDOC_Ao:          case MDOC_Ao:
                 /* FALLTHROUGH */                  /* FALLTHROUGH */
         case MDOC_Aq:          case MDOC_Aq:
                 print_text(h, n->parent->prev != NULL &&                  print_text(h, n->nchild == 1 &&
                     n->parent->prev->tok == MDOC_An ?  "<" : "\\(la");                      n->child->tok == MDOC_Mt ?  "<" : "\\(la");
                 break;                  break;
         case MDOC_Bro:          case MDOC_Bro:
                 /* FALLTHROUGH */                  /* FALLTHROUGH */
Line 2162  mdoc_quote_post(MDOC_ARGS)
Line 2162  mdoc_quote_post(MDOC_ARGS)
         case MDOC_Ao:          case MDOC_Ao:
                 /* FALLTHROUGH */                  /* FALLTHROUGH */
         case MDOC_Aq:          case MDOC_Aq:
                 print_text(h, n->parent->prev != NULL &&                  print_text(h, n->nchild == 1 &&
                     n->parent->prev->tok == MDOC_An ?  ">" : "\\(ra");                      n->child->tok == MDOC_Mt ?  ">" : "\\(ra");
                 break;                  break;
         case MDOC_Bro:          case MDOC_Bro:
                 /* FALLTHROUGH */                  /* FALLTHROUGH */

Legend:
Removed from v.1.218  
changed lines
  Added in v.1.219

CVSweb