Lines Matching defs:sym
3 function parse() reads Config.in data into *sym list, then
4 we read .config and set sym->try on each enabled symbol.
119 } *sym;
230 // Read Config.in (and includes) to populate global struct symbol *sym list.
252 new->next = sym;
254 sym = new;
261 if (sym && sym->help_indent) {
263 if (sym->help_indent < 0) {
264 sym->help_indent = 0;
265 while (isspace(line[sym->help_indent])) sym->help_indent++;
270 else if (keyword("help", line)) sym->help_indent = -1;
310 // Stage 1: read data. Read Config.in to global 'struct symbol *sym' list,
327 for (try=sym; try; try=try->next) {
350 for (catch = sym; catch; catch = catch->next) {
478 while (sym) {
481 if (sym->help) {
485 strcpy(s = xmalloc(strlen(sym->name)+1), sym->name);
491 dd = sym->help;
497 i = sym->help_indent;
515 if (dd == sym->help) break;
519 sym = sym->next;