diff options
author | Miles Bader <miles@gnu.org> | 1997-02-21 04:41:44 +0000 |
---|---|---|
committer | Miles Bader <miles@gnu.org> | 1997-02-21 04:41:44 +0000 |
commit | 76eb5ae0e567b5dc30c998cd82be8bccd16a44db (patch) | |
tree | 30e2dbe4d2ff18c5a12e149b2a870e078b9ff67d | |
parent | 5e75fdfa074b0ef731f93f96bfcaf77e54ea1d42 (diff) |
Doc fix.
-rw-r--r-- | libshouldbeinlibc/argp-help.c | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/libshouldbeinlibc/argp-help.c b/libshouldbeinlibc/argp-help.c index 131b1616..a4941464 100644 --- a/libshouldbeinlibc/argp-help.c +++ b/libshouldbeinlibc/argp-help.c @@ -880,12 +880,11 @@ arg (const struct argp_option *real, const char *req_fmt, const char *opt_fmt, /* State used during the execution of hol_help. */ struct hol_help_state { - /* PREV_ENTRY should contain the last entry printed before this, or null if - it's the first, and if an ENTRY is in a different group, and SEP_GROUPS - is true, then a blank line will be printed before any output. - SEP_GROUPS is also set to true if a user-specified group header is - printed. */ + /* PREV_ENTRY should contain the previous entry printed, or 0. */ struct hol_entry *prev_entry; + + /* If an entry is in a different group from the previous one, and SEP_GROUPS + is true, then a blank line will be printed before any output. */ int sep_groups; /* True if a duplicate option argument was suppressed (only ever set if |