# HG changeset patch # User Richard M. Stallman # Date 785017812 0 # Node ID 8f17a2e2b777cd80874a60efc2445000a701ee15 # Parent ef6e1637c777bf113dd0cc93502c525db4b7c646 (Fdirectory_files): Pass new arg to `compile_pattern'. diff -r ef6e1637c777 -r 8f17a2e2b777 src/dired.c --- a/src/dired.c Wed Nov 16 20:29:39 1994 +0000 +++ b/src/dired.c Wed Nov 16 20:30:12 1994 +0000 @@ -156,9 +156,9 @@ 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 }