summaryrefslogtreecommitdiff
path: root/src/dired.c
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1994-11-16 20:30:12 +0000
committerRichard M. Stallman <rms@gnu.org>1994-11-16 20:30:12 +0000
commite50bee1ec76d454f3e53629c0ff88e6bb884e4ab (patch)
treee8b282f2b08c5910f82fe7a847d6d6a2f671c563 /src/dired.c
parent90e0694c365412e0804379728a62128fb905a64c (diff)
downloademacs-e50bee1ec76d454f3e53629c0ff88e6bb884e4ab.tar.gz
(Fdirectory_files): Pass new arg to `compile_pattern'.
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
}