From: Richard M. Stallman Date: Wed, 16 Nov 1994 20:30:12 +0000 (+0000) Subject: (Fdirectory_files): Pass new arg to `compile_pattern'. X-Git-Tag: emacs-19.34~5871 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=8a5900628148b8a038b3ef309b49deaa7b27d95c;p=emacs.git (Fdirectory_files): Pass new arg to `compile_pattern'. --- 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 }