summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1998-02-08 21:35:14 +0000
committerRichard M. Stallman <rms@gnu.org>1998-02-08 21:35:14 +0000
commit6ff4860667b4045a956dacdbe7cc0ba7732055c0 (patch)
treeb51469f2deb35308746da29b463a3bbcd678dbdb
parent7ac0bcb4e932f9dd78760d0c0c75d9698507d7f9 (diff)
downloademacs-6ff4860667b4045a956dacdbe7cc0ba7732055c0.tar.gz
(Fdirectory_files): Call compile_pattern the new way.
-rw-r--r--src/dired.c4
1 files changed, 2 insertions, 2 deletions
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
}