diff options
author | John Wiegley <johnw@newartisans.com> | 2009-11-02 02:39:31 -0500 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2009-11-02 02:39:31 -0500 |
commit | 094794c640dafaab37a0b227908d8602d29f7daa (patch) | |
tree | 8e439162a8bc0cc60eea27ba1ca647d5683ba8db /src/session.h | |
parent | 0a9cc833adebadc876e3e09f1c344b08b23e59f8 (diff) | |
download | fork-ledger-094794c640dafaab37a0b227908d8602d29f7daa.tar.gz fork-ledger-094794c640dafaab37a0b227908d8602d29f7daa.tar.bz2 fork-ledger-094794c640dafaab37a0b227908d8602d29f7daa.zip |
Added a --european flag, to use commas for decimals
Ledger can often figure this out for itself, but this flag just makes it
the default behavior. It is meant to be added to one's ~/.ledgerrc
file.
Diffstat (limited to 'src/session.h')
-rw-r--r-- | src/session.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/session.h b/src/session.h index c1e0243b..4b8d2380 100644 --- a/src/session.h +++ b/src/session.h @@ -105,6 +105,7 @@ public: HANDLER(account_).report(out); HANDLER(cache_).report(out); HANDLER(download).report(out); + HANDLER(european).report(out); HANDLER(file_).report(out); HANDLER(input_date_format_).report(out); HANDLER(price_db_).report(out); @@ -123,6 +124,7 @@ public: OPTION(session_t, account_); // -a OPTION(session_t, cache_); OPTION(session_t, download); // -Q + OPTION(session_t, european); OPTION__ (session_t, price_exp_, // -Z |