| 3117 | not listed. */ |
| 3118 | |
| 3119 | static void |
| 3120 | add_ignore_pattern (char const *pattern) |
| 3121 | { |
| 3122 | struct ignore_pattern *ignore; |
| 3123 | |
| 3124 | ignore = xmalloc (sizeof *ignore); |
| 3125 | ignore->pattern = pattern; |
| 3126 | /* Add it to the head of the linked list. */ |
| 3127 | ignore->next = ignore_patterns; |
| 3128 | ignore_patterns = ignore; |
| 3129 | } |
| 3130 | |
| 3131 | /* Return true if one of the PATTERNS matches FILE. */ |
| 3132 |