# HG changeset patch # User Richard M. Stallman # Date 886973714 0 # Node ID 3b8d9a7be50ccfa4c49482bd1fa8e5e3e3d73bec # Parent c9f608f889b4c4cdccb7fcff75ea46e2741e82b9 (Fdirectory_files): Call compile_pattern the new way. diff -r c9f608f889b4 -r 3b8d9a7be50c src/dired.c --- a/src/dired.c Sun Feb 08 21:33:56 1998 +0000 +++ b/src/dired.c Sun Feb 08 21:35:14 1998 +0000 @@ -170,9 +170,9 @@ because we do make multibyte strings if the contents warrant. */ #ifdef VMS bufp = compile_pattern (match, 0, - buffer_defaults.downcase_table->contents, 0, 1); + buffer_defaults.downcase_table, 0, 1); #else - bufp = compile_pattern (match, 0, 0, 0, 1); + bufp = compile_pattern (match, 0, Qnil, 0, 1); #endif }