summaryrefslogtreecommitdiff
path: root/src/dired.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/dired.c')
-rw-r--r--src/dired.c4
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\
compile_pattern to do the work for us. */
#ifdef VMS
bufp = compile_pattern (match, 0,
- buffer_defaults.downcase_table->contents);
+ buffer_defaults.downcase_table->contents, 0);
#else
- bufp = compile_pattern (match, 0, 0);
+ bufp = compile_pattern (match, 0, 0, 0);
#endif
}