From cadb02c257d0f461ad71e7377a8bdecf0b4cf6dc Mon Sep 17 00:00:00 2001 From: John Wiegley Date: Sun, 1 Feb 2009 18:36:40 -0400 Subject: Fixed a display problem when dumping O_MATCH expressions. --- src/op.cc | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/op.cc b/src/op.cc index 215c6864..fac4ce18 100644 --- a/src/op.cc +++ b/src/op.cc @@ -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; -- cgit v1.2.3