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

Diff for /mandoc/tree.c between version 1.91 and 1.92

version 1.91, 2021/09/07 10:59:18 version 1.92, 2022/01/12 04:54:05
Line 1 
Line 1 
 /* $Id$ */  /* $Id$ */
 /*  /*
  * Copyright (c) 2008, 2009, 2011, 2014 Kristaps Dzonsons <kristaps@bsd.lv>   * Copyright (c) 2008, 2009, 2011, 2014 Kristaps Dzonsons <kristaps@bsd.lv>
  * Copyright (c) 2013-2015, 2017-2021 Ingo Schwarze <schwarze@openbsd.org>   * Copyright (c) 2013-2015, 2017-2022 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 509  print_span(const struct tbl_span *sp, int indent)
Line 509  print_span(const struct tbl_span *sp, int indent)
                                         putchar('x');                                          putchar('x');
                         }                          }
                         switch (dp->pos) {                          switch (dp->pos) {
                         case TBL_DATA_HORIZ:  
                         case TBL_DATA_NHORIZ:                          case TBL_DATA_NHORIZ:
                                 putchar('-');                                  putchar('\\');
                                   /* FALLTHROUGH */
                           case TBL_DATA_HORIZ:
                                   putchar('_');
                                 break;                                  break;
                         case TBL_DATA_DHORIZ:  
                         case TBL_DATA_NDHORIZ:                          case TBL_DATA_NDHORIZ:
                                   putchar('\\');
                                   /* FALLTHROUGH */
                           case TBL_DATA_DHORIZ:
                                 putchar('=');                                  putchar('=');
                                 break;                                  break;
                         default:                          default:

Legend:
Removed from v.1.91  
changed lines
  Added in v.1.92

CVSweb