Print this page
Update to 1.12.3.

Split Close
Expand all
Collapse all
          --- old/usr/src/cmd/mandoc/libroff.h
          +++ new/usr/src/cmd/mandoc/libroff.h
   1      -/*      $Id: libroff.h,v 1.27 2011/07/25 15:37:00 kristaps Exp $ */
        1 +/*      $Id: libroff.h,v 1.28 2013/05/31 21:37:17 schwarze Exp $ */
   2    2  /*
   3    3   * Copyright (c) 2009, 2010, 2011 Kristaps Dzonsons <kristaps@bsd.lv>
   4    4   *
   5    5   * Permission to use, copy, modify, and distribute this software for any
   6    6   * purpose with or without fee is hereby granted, provided that the above
   7    7   * copyright notice and this permission notice appear in all copies.
   8    8   *
   9    9   * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
  10   10   * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
  11   11   * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
↓ open down ↓ 12 lines elided ↑ open up ↑
  24   24          TBL_PART_LAYOUT, /* describing layout */
  25   25          TBL_PART_DATA, /* creating data rows */
  26   26          TBL_PART_CDATA /* continue previous row */
  27   27  };
  28   28  
  29   29  struct  tbl_node {
  30   30          struct mparse    *parse; /* parse point */
  31   31          int               pos; /* invocation column */
  32   32          int               line; /* invocation line */
  33   33          enum tbl_part     part;
  34      -        struct tbl        opts;
       34 +        struct tbl_opts   opts;
  35   35          struct tbl_row   *first_row;
  36   36          struct tbl_row   *last_row;
  37   37          struct tbl_span  *first_span;
  38   38          struct tbl_span  *current_span;
  39   39          struct tbl_span  *last_span;
  40   40          struct tbl_head  *first_head;
  41   41          struct tbl_head  *last_head;
  42   42          struct tbl_node  *next;
  43   43  };
  44   44  
↓ open down ↓ 40 lines elided ↑ open up ↑
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX