Lines Matching defs:help
176 | config_option_list help
268 | choice_option_list help
391 /* help option */
395 printd(DEBUG_PARSE, "%s:%d:help\n", zconf_curname(), zconf_lineno());
399 help: help_start T_HELPTEXT
401 if (current_entry->help) {
402 free(current_entry->help);
403 zconfprint("warning: '%s' defined with more than one help text -- only the last one will be used",
407 /* Is the help text empty or all whitespace? */
409 zconfprint("warning: '%s' defined with blank help text",
412 current_entry->help = $2;
672 if (menu->help) {
673 int len = strlen(menu->help);
674 while (menu->help[--len] == '\n')
675 menu->help[len] = 0;
676 fprintf(out, " help\n%s\n", menu->help);