diff options
author | Richard M. Stallman <rms@gnu.org> | 1994-11-16 20:30:12 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1994-11-16 20:30:12 +0000 |
commit | 8a5900628148b8a038b3ef309b49deaa7b27d95c (patch) | |
tree | 31a2cfce63e3d31381b4c499a365794da0f2b0a7 | |
parent | 91fc6e4448782f6bf594d709677ad12d110b6c69 (diff) | |
download | emacs-8a5900628148b8a038b3ef309b49deaa7b27d95c.tar.gz |
(Fdirectory_files): Pass new arg to `compile_pattern'.
-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\ 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 } |