1997-05-21 17:53 Miles Bader <miles@gnu.ai.mit.edu>

* argp-help.c (hol_add_cluster): Initialize CL->depth.
This commit is contained in:
Ulrich Drepper 1997-05-24 10:47:33 +00:00
parent 0501d60367
commit a133e7a4d2
2 changed files with 5 additions and 0 deletions

View File

@ -1,3 +1,7 @@
1997-05-21 17:53 Miles Bader <miles@gnu.ai.mit.edu>
* argp-help.c (hol_add_cluster): Initialize CL->depth.
1997-05-24 03:51 Ulrich Drepper <drepper@cygnus.com>
* stdlib/Makefile (routines): Add strtol_l, strtoul_l, strtoll_l,

View File

@ -458,6 +458,7 @@ hol_add_cluster (struct hol *hol, int group, const char *header, int index,
cl->index = index;
cl->parent = parent;
cl->argp = argp;
cl->depth = parent ? parent->depth + 1 : 0;
cl->next = hol->clusters;
hol->clusters = cl;