| 792 | #ifdef SYSCF |
| 793 | |
| 794 | staticfn boolean |
| 795 | cnf_line_WIZARDS(char *bufp) |
| 796 | { |
| 797 | if (sysopt.wizards) |
| 798 | free((genericptr_t) sysopt.wizards); |
| 799 | sysopt.wizards = dupstr(bufp); |
| 800 | if (strlen(sysopt.wizards) && strcmp(sysopt.wizards, "*")) { |
| 801 | /* pre-format WIZARDS list now; it's displayed during a panic |
| 802 | and since that panic might be due to running out of memory, |
| 803 | we don't want to risk attempting to allocate any memory then */ |
| 804 | if (sysopt.fmtd_wizard_list) |
| 805 | free((genericptr_t) sysopt.fmtd_wizard_list); |
| 806 | sysopt.fmtd_wizard_list = build_english_list(sysopt.wizards); |
| 807 | } |
| 808 | return TRUE; |
| 809 | } |
| 810 | |
| 811 | staticfn boolean |
| 812 | cnf_line_SHELLERS(char *bufp) |
nothing calls this directly
no test coverage detected