diff options
author | John Wiegley <johnw@newartisans.com> | 2009-01-31 01:21:14 -0400 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2009-01-31 01:21:14 -0400 |
commit | c5795c66c9044c347332812498b888787e0edd4a (patch) | |
tree | 02c06509902ba8b38b7d8688d5e67ba47d177b6f /src/op.cc | |
parent | 75f1cd727cc4de5640a529f331da5c1b9a6ce00b (diff) | |
download | fork-ledger-c5795c66c9044c347332812498b888787e0edd4a.tar.gz fork-ledger-c5795c66c9044c347332812498b888787e0edd4a.tar.bz2 fork-ledger-c5795c66c9044c347332812498b888787e0edd4a.zip |
"div", or "//", is now the operator of division.
Diffstat (limited to 'src/op.cc')
-rw-r--r-- | src/op.cc | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -291,7 +291,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 << ")"; |