Lines Matching defs:help
184 | config_option_list help
276 | choice_option_list help
401 /* help option */
405 printd(DEBUG_PARSE, "%s:%d:help\n", zconf_curname(), zconf_lineno());
409 help: help_start T_HELPTEXT
411 if (current_entry->help) {
412 free(current_entry->help);
413 zconfprint("warning: '%s' defined with more than one help text -- only the last one will be used",
417 /* Is the help text empty or all whitespace? */
419 zconfprint("warning: '%s' defined with blank help text",
422 current_entry->help = $2;
692 if (menu->help) {
693 int len = strlen(menu->help);
694 while (menu->help[--len] == '\n')
695 menu->help[len] = 0;
696 fprintf(out, " help\n%s\n", menu->help);