diff options
author | Alexis Hildebrandt <afh@surryhill.net> | 2015-01-27 11:55:08 +0100 |
---|---|---|
committer | Alexis Hildebrandt <afh@surryhill.net> | 2015-01-27 22:02:59 +0100 |
commit | 11a01f1b5aeff063740edfbe99dba35003237551 (patch) | |
tree | c30df6911bd553f2229c1012214963a589d1c393 /test/CheckManpage.py | |
parent | 19f4f587f0a527056707465bdd9b441a53236711 (diff) | |
download | fork-ledger-11a01f1b5aeff063740edfbe99dba35003237551.tar.gz fork-ledger-11a01f1b5aeff063740edfbe99dba35003237551.tar.bz2 fork-ledger-11a01f1b5aeff063740edfbe99dba35003237551.zip |
[doc] Report undocumented value expression functions
in the manpage and texinfo manual.
Diffstat (limited to 'test/CheckManpage.py')
-rwxr-xr-x | test/CheckManpage.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/CheckManpage.py b/test/CheckManpage.py index 6b0f2476..944f4e07 100755 --- a/test/CheckManpage.py +++ b/test/CheckManpage.py @@ -17,6 +17,7 @@ class CheckManpage (CheckOptions): def __init__(self, args): CheckOptions.__init__(self, args) self.option_pattern = '\.It Fl \\\\-([-A-Za-z]+)' + self.function_pattern = '\.It Fn ([-A-Za-z_]+)' self.source_file = join(self.source, 'doc', 'ledger.1') self.source_type = 'manpage' |