From 7b45a664f2d188065dadb8506742f718982373eb Mon Sep 17 00:00:00 2001 From: John Wiegley Date: Sat, 10 Mar 2012 21:32:48 -0600 Subject: [PATCH] Make --lot-notes the primary name, not --lot-tags --- doc/ledger.1 | 1 - src/report.cc | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/doc/ledger.1 b/doc/ledger.1 index 2879cbe0..20369a78 100644 --- a/doc/ledger.1 +++ b/doc/ledger.1 @@ -351,7 +351,6 @@ See .It Fl \-lot-dates .It Fl \-lot-notes .It Fl \-lot-prices -.It Fl \-lot-tags .It Fl \-lots .It Fl \-lots-actual .It Fl \-market Pq Fl V diff --git a/src/report.cc b/src/report.cc index 4dd0bca4..36865a75 100644 --- a/src/report.cc +++ b/src/report.cc @@ -1075,7 +1075,7 @@ option_t * report_t::lookup_option(const char * p) OPT_(limit_); else OPT(lot_dates); else OPT(lot_prices); - else OPT_ALT(lot_tags, lot_notes); + else OPT_ALT(lot_notes, lot_tags); else OPT(lots); else OPT(lots_actual); else OPT_ALT(tail_, last_);