aboutsummaryrefslogtreecommitdiff
path: root/src/main.c
diff options
context:
space:
mode:
authorSergey Poznyakoff <gray@gnu.org>2019-02-10 15:26:03 +0200
committerSergey Poznyakoff <gray@gnu.org>2019-02-10 15:26:03 +0200
commitb85e6151264722dcaf7dcd1ec2a75bcee295512c (patch)
treef30c25a60b37097cff69cee25f0deb54d7954145 /src/main.c
parentb4038ea16c1709367f5c84939919785686481b55 (diff)
downloadcflow-b85e6151264722dcaf7dcd1ec2a75bcee295512c.tar.gz
cflow-b85e6151264722dcaf7dcd1ec2a75bcee295512c.tar.bz2
Finish implementation of --all
* doc/cflow.1: Document the --all --all behavior * doc/cflow.texi: Likewise. * src/main.c: Increment all_functions for each -A option. * src/output.c (tree_output): If one --all option is used, output graphs for all top-level functions (i.e. functions, not reachable from other ones). If used twice, output graphs for all global function. * tests/all.at: New test. * tests/Makefile.am: Add new test. * tests/testsuite.at: Likewise.
Diffstat (limited to 'src/main.c')
-rw-r--r--src/main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.c b/src/main.c
index a5535c7..bdfddb0 100644
--- a/src/main.c
+++ b/src/main.c
@@ -515,13 +515,13 @@ static error_t
parse_opt (int key, char *arg, struct argp_state *state)
{
int num;
switch (key) {
case 'A':
- all_functions = 1;
+ all_functions++;
break;
case 'a':
strict_ansi = 1;
break;
case OPT_NO_ANSI:
strict_ansi = 0;

Return to:

Send suggestions and report system problems to the System administrator.