From: Richard M. Stallman Date: Sun, 8 Feb 1998 21:35:14 +0000 (+0000) Subject: (Fdirectory_files): Call compile_pattern the new way. X-Git-Tag: emacs-20.3~2204 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=3e9377127b8b6b2d86c2c5ff847ffaec89d702c2;p=emacs.git (Fdirectory_files): Call compile_pattern the new way. --- diff --git a/src/dired.c b/src/dired.c index 7176596032e..8cd4f5d86ee 100644 --- a/src/dired.c +++ b/src/dired.c @@ -170,9 +170,9 @@ If NOSORT is non-nil, the list is not sorted--its order is unpredictable.\n\ 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 }