# File text/format.rb, line 115 115: def ==(o) 116: (@text == o.text) && 117: (@columns == o.columns) && 118: (@left_margin == o.left_margin) && 119: (@right_margin == o.right_margin) && 120: (@hard_margins == o.hard_margins) && 121: (@split_rules == o.split_rules) && 122: (@first_indent == o.first_indent) && 123: (@body_indent == o.body_indent) && 124: (@tag_text == o.tag_text) && 125: (@tabstop == o.tabstop) && 126: (@format_style == o.format_style) && 127: (@extra_space == o.extra_space) && 128: (@tag_paragraph == o.tag_paragraph) && 129: (@nobreak == o.nobreak) && 130: (@abbreviations == o.abbreviations) && 131: (@nobreak_regex == o.nobreak_regex) 132: end