Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 355647
Collapse All | Expand All

(-)a/src/roff/troff/node.cpp (-1 / +10 lines)
Lines 1811-1816 void suppress_output_file::really_transparent_char(unsigned char) Link Here
1811
{
1811
{
1812
}
1812
}
1813
node::~node()
1814
{
1815
  if (state != 0)
1816
    delete state;
1817
  if (push_state != 0)
1818
    delete push_state;
1819
}
1820
1813
/* glyphs, ligatures, kerns, discretionary breaks */
1821
/* glyphs, ligatures, kerns, discretionary breaks */
1814
class charinfo_node : public node {
1822
class charinfo_node : public node {
Lines 4643-4649 void hline_node::tprint(troff_output_file *out) Link Here
4643
  }
4651
  }
4644
  else {
4652
  else {
4645
    hunits rem = x - w*i;
4653
    hunits rem = x - w*i;
4646
    if (rem > H0)
4654
    if (rem > H0) {
4647
      if (n->overlaps_horizontally()) {
4655
      if (n->overlaps_horizontally()) {
Lines 4651-4656 void hline_node::tprint(troff_output_file *out) Link Here
4651
      }
4659
      }
4652
      else
4660
      else
4661
    }
4653
    while (--i >= 0)
4662
    while (--i >= 0)
4654
      if (out->is_on())
4663
      if (out->is_on())
(-)a/src/roff/troff/node.h (-5 lines)
Lines 132-141 inline node::node(node *n, statem *s, int divlevel) Link Here
132
    state = 0;
132
    state = 0;
133
}
133
}
134
inline node::~node()
135
{
136
}                                                                      
137
                          
138
// 0 means it doesn't, 1 means it does, 2 means it's transparent       
134
// 0 means it doesn't, 1 means it does, 2 means it's transparent       
139
              
135
              
140
int node_list_ends_sentence(node *);
136
int node_list_ends_sentence(node *);
141
-

Return to bug 355647