diff options
author | John Wiegley <johnw@newartisans.com> | 2009-02-01 18:36:40 -0400 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2009-02-01 18:36:40 -0400 |
commit | cadb02c257d0f461ad71e7377a8bdecf0b4cf6dc (patch) | |
tree | 39f90ff6361a7dc3d3d7f1e2291c1928b5eed4bc | |
parent | ae65e8ae05b82bee8be61156b4c39a519e8b4ba5 (diff) | |
download | fork-ledger-cadb02c257d0f461ad71e7377a8bdecf0b4cf6dc.tar.gz fork-ledger-cadb02c257d0f461ad71e7377a8bdecf0b4cf6dc.tar.bz2 fork-ledger-cadb02c257d0f461ad71e7377a8bdecf0b4cf6dc.zip |
Fixed a display problem when dumping O_MATCH expressions.
-rw-r--r-- | src/op.cc | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -380,10 +380,9 @@ bool expr_t::op_t::print(std::ostream& out, const context_t& context) const break; case O_MATCH: - out << '/'; if (left() && left()->print(out, context)) found = true; - out << "/ =~ "; + out << " =~ "; if (has_right() && right()->print(out, context)) found = true; break; |