diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/dired.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/dired.c b/src/dired.c index a9a911de145..d012eaaa140 100644 --- a/src/dired.c +++ b/src/dired.c | |||
| @@ -156,9 +156,9 @@ If NOSORT is non-nil, the list is not sorted--its order is unpredictable.\n\ | |||
| 156 | compile_pattern to do the work for us. */ | 156 | compile_pattern to do the work for us. */ |
| 157 | #ifdef VMS | 157 | #ifdef VMS |
| 158 | bufp = compile_pattern (match, 0, | 158 | bufp = compile_pattern (match, 0, |
| 159 | buffer_defaults.downcase_table->contents); | 159 | buffer_defaults.downcase_table->contents, 0); |
| 160 | #else | 160 | #else |
| 161 | bufp = compile_pattern (match, 0, 0); | 161 | bufp = compile_pattern (match, 0, 0, 0); |
| 162 | #endif | 162 | #endif |
| 163 | } | 163 | } |
| 164 | 164 | ||