summaryrefslogtreecommitdiff
path: root/src/value.cc
diff options
context:
space:
mode:
authorJohn Wiegley <johnw@newartisans.com>2010-06-09 09:55:37 -0400
committerJohn Wiegley <johnw@newartisans.com>2010-06-09 09:55:37 -0400
commit556211e623cad88213e5087b5c9c36e754d9aa02 (patch)
tree9b4d0197448cd8587e11f5e3e65214e9dc80e3a7 /src/value.cc
parent14476a63f4abbdce5311ace031b7345a34af060b (diff)
parentc28fad384c28fb929fc8ea69854496141bdf306a (diff)
downloadledger-556211e623cad88213e5087b5c9c36e754d9aa02.tar.gz
ledger-556211e623cad88213e5087b5c9c36e754d9aa02.tar.bz2
ledger-556211e623cad88213e5087b5c9c36e754d9aa02.zip
Merge branch 'next'
Diffstat (limited to 'src/value.cc')
-rw-r--r--src/value.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/value.cc b/src/value.cc
index e5ced56e..64193db6 100644
--- a/src/value.cc
+++ b/src/value.cc
@@ -1726,7 +1726,7 @@ void value_t::print(std::ostream& out,
out << 0;
} else {
std::ostringstream buf;
- as_amount().print(buf, flags & AMOUNT_PRINT_NO_COMPUTED_ANNOTATIONS);
+ as_amount().print(buf, flags);
justify(out, buf.str(), first_width, flags & AMOUNT_PRINT_RIGHT_JUSTIFY,
flags & AMOUNT_PRINT_COLORIZE && as_amount().sign() < 0);
}