Lines Matching refs:currp
420 struct man_node *currp = NULL; in build_manpath() local
451 if ((currp = (struct man_node *)calloc(1, s)) == NULL) in build_manpath()
454 currp->frompath = (flags & BMP_ISPATH); in build_manpath()
457 lastp = manpage = currp; in build_manpath()
459 getpath(currp, p); in build_manpath()
460 getsect(currp, p); in build_manpath()
466 if (dupcheck(currp, &didup) != 0) { in build_manpath()
467 freev(currp->secv); in build_manpath()
468 free(currp); in build_manpath()
470 currp->next = NULL; in build_manpath()
471 if (currp != manpage) in build_manpath()
472 lastp->next = currp; in build_manpath()
473 lastp = currp; in build_manpath()