aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman1994-11-16 20:30:12 +0000
committerRichard M. Stallman1994-11-16 20:30:12 +0000
commit8a5900628148b8a038b3ef309b49deaa7b27d95c (patch)
tree31a2cfce63e3d31381b4c499a365794da0f2b0a7 /src
parent91fc6e4448782f6bf594d709677ad12d110b6c69 (diff)
downloademacs-8a5900628148b8a038b3ef309b49deaa7b27d95c.tar.gz
emacs-8a5900628148b8a038b3ef309b49deaa7b27d95c.zip
(Fdirectory_files): Pass new arg to `compile_pattern'.
Diffstat (limited to 'src')
-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\
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