summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexis Hildebrandt <afh@surryhill.net>2015-02-15 08:25:35 +0100
committerAlexis Hildebrandt <afh@surryhill.net>2015-02-18 21:50:34 +0100
commitf59abd4c765b08cbd5f18ec851b1d78a766a1c93 (patch)
tree7684fbeaf9a42bc454d5ee11be6b9a80db1bb35c
parentebd2334db391c371e3e7efc1a140d469626cf24d (diff)
downloadfork-ledger-f59abd4c765b08cbd5f18ec851b1d78a766a1c93.tar.gz
fork-ledger-f59abd4c765b08cbd5f18ec851b1d78a766a1c93.tar.bz2
fork-ledger-f59abd4c765b08cbd5f18ec851b1d78a766a1c93.zip
[ledger] Remove --full-help option
since it is the same as --help.
-rw-r--r--doc/ledger.14
-rw-r--r--src/global.cc3
-rw-r--r--src/global.h1
3 files changed, 0 insertions, 8 deletions
diff --git a/doc/ledger.1 b/doc/ledger.1
index ed1828c5..c22b9018 100644
--- a/doc/ledger.1
+++ b/doc/ledger.1
@@ -560,7 +560,6 @@ The latest available price is used.
.It Fl \-file Ar FILE
Read journal data from
.Ar FILE .
-.\".It Fl \-full-help
.It Fl \-first Ar INT
Print the first
.Ar INT
@@ -628,9 +627,6 @@ can be a handy way to remember which options do what. This help screen
is also printed if
.Nm
is run without a command.
-.\".It Fl \-help-calc
-.\".It Fl \-help-comm
-.\".It Fl \-help-disp
.It Fl \-immediate
Evaluate calculations immediately rather than lazily.
.\".It Fl \-import
diff --git a/src/global.cc b/src/global.cc
index c144e3be..bdaabd5a 100644
--- a/src/global.cc
+++ b/src/global.cc
@@ -316,9 +316,6 @@ option_t<global_scope_t> * global_scope_t::lookup_option(const char * p)
case 'd':
OPT(debug_);
break;
- case 'f':
- OPT(full_help);
- break;
case 'h':
OPT_(help);
break;
diff --git a/src/global.h b/src/global.h
index 454fc64e..5d849777 100644
--- a/src/global.h
+++ b/src/global.h
@@ -147,7 +147,6 @@ See LICENSE file included with the distribution for details and disclaimer.");
void visit_man_page() const;
- OPTION_(global_scope_t, full_help, DO() { parent->visit_man_page(); }); // -H
OPTION_(global_scope_t, help, DO() { parent->visit_man_page(); }); // -h
OPTION__