From 8a5900628148b8a038b3ef309b49deaa7b27d95c Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Wed, 16 Nov 1994 20:30:12 +0000 Subject: [PATCH] (Fdirectory_files): Pass new arg to `compile_pattern'. --- src/dired.c | 4 ++-- 1 file 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 } -- 2.39.5