summaryrefslogtreecommitdiff
path: root/option.cc
diff options
context:
space:
mode:
Diffstat (limited to 'option.cc')
-rw-r--r--option.cc16
1 files changed, 8 insertions, 8 deletions
diff --git a/option.cc b/option.cc
index d4de29de..103e960e 100644
--- a/option.cc
+++ b/option.cc
@@ -888,25 +888,25 @@ OPT_BEGIN(download, "Q") {
} OPT_END(download);
OPT_BEGIN(quantity, "O") {
- ledger::amount_expr = "@a";
- ledger::total_expr = "@O";
+ ledger::amount_expr = "a";
+ ledger::total_expr = "O";
} OPT_END(quantity);
OPT_BEGIN(basis, "B") {
- ledger::amount_expr = "@b";
- ledger::total_expr = "@B";
+ ledger::amount_expr = "b";
+ ledger::total_expr = "B";
} OPT_END(basis);
OPT_BEGIN(price, "I") {
- ledger::amount_expr = "@i";
- ledger::total_expr = "@I";
+ ledger::amount_expr = "i";
+ ledger::total_expr = "I";
} OPT_END(price);
OPT_BEGIN(market, "V") {
report->show_revalued = true;
- ledger::amount_expr = "@v";
- ledger::total_expr = "@V";
+ ledger::amount_expr = "v";
+ ledger::total_expr = "V";
} OPT_END(market);
namespace {