| 9640 | } |
| 9641 | |
| 9642 | staticfn void |
| 9643 | all_options_apes(strbuf_t *sbuf) |
| 9644 | { |
| 9645 | struct autopickup_exception *tmp = ga.apelist; |
| 9646 | char buf[BUFSZ]; |
| 9647 | |
| 9648 | while (tmp) { |
| 9649 | Sprintf(buf, "autopickup_exception=\"%c%s\"\n", |
| 9650 | tmp->grab ? '<' : '>', tmp->pattern); |
| 9651 | strbuf_append(sbuf, buf); |
| 9652 | tmp = tmp->next; |
| 9653 | } |
| 9654 | } |
| 9655 | |
| 9656 | #ifdef CHANGE_COLOR |
| 9657 | staticfn void |
no test coverage detected