diff options
author | John Wiegley <johnw@newartisans.com> | 2009-02-15 16:34:34 -0400 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2009-02-15 16:34:34 -0400 |
commit | 6f7f87699c509131ab5ffff330ba77abbd58e829 (patch) | |
tree | 17960cb9541037bb05abed7c0b8b6cd949e72b05 /src/op.cc | |
parent | fcd7f4f73b50ec02ec1f501a8ebde502c6736850 (diff) | |
download | fork-ledger-6f7f87699c509131ab5ffff330ba77abbd58e829.tar.gz fork-ledger-6f7f87699c509131ab5ffff330ba77abbd58e829.tar.bz2 fork-ledger-6f7f87699c509131ab5ffff330ba77abbd58e829.zip |
Parse '/' in an operator context as "div"
Diffstat (limited to 'src/op.cc')
-rw-r--r-- | src/op.cc | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -376,7 +376,7 @@ bool expr_t::op_t::print(std::ostream& out, const context_t& context) const out << "("; if (left() && left()->print(out, context)) found = true; - out << " // "; + out << " / "; if (has_right() && right()->print(out, context)) found = true; out << ")"; |