Lines Matching defs:help
60 * Auto help table options.
64 { "help", '?', 0, NULL, (int)'?', N_("Show this help message"), NULL },
72 { "help", '?', 0, NULL, (int)'?', N_("Show this help message"), NULL },
278 * Display help text for an option.
291 const char * help = D_(translation_domain, opt->descrip);
352 char * t = malloc((help ? strlen(help) : 0) +
356 if (help)
357 te = stpcpy(te, help);
431 if (help)
440 help = defs;
442 helpLength = strlen(help);
447 ch = help + lineLength - 1;
448 while (ch > help && !_isspaceptr(ch))
450 if (ch == help) break; /* give up */
451 while (ch > (help + 1) && _isspaceptr(ch))
459 { char * fmthelp = xstrdup(help);
461 fmthelp[ch - help] = '\0';
468 help = ch;
469 while (_isspaceptr(help) && *help)
470 help = POPT_next_char(help);
471 helpLength = strlen(help);
474 if (helpLength) fprintf(fp, "%s\n", help);
475 help = NULL;
535 * Display popt alias and exec help.
560 * Display help text for a table of options.