diff options
| author | Richard M. Stallman | 1998-02-08 21:35:14 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1998-02-08 21:35:14 +0000 |
| commit | 3e9377127b8b6b2d86c2c5ff847ffaec89d702c2 (patch) | |
| tree | 995b50533d0d1d8f5de0eb706156bb73ccef0bdf | |
| parent | facdc7504890785787642585215c4193ccd4476e (diff) | |
| download | emacs-3e9377127b8b6b2d86c2c5ff847ffaec89d702c2.tar.gz emacs-3e9377127b8b6b2d86c2c5ff847ffaec89d702c2.zip | |
(Fdirectory_files): Call compile_pattern the new way.
| -rw-r--r-- | src/dired.c | 4 |
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\ | |||
| 170 | because we do make multibyte strings if the contents warrant. */ | 170 | because we do make multibyte strings if the contents warrant. */ |
| 171 | #ifdef VMS | 171 | #ifdef VMS |
| 172 | bufp = compile_pattern (match, 0, | 172 | bufp = compile_pattern (match, 0, |
| 173 | buffer_defaults.downcase_table->contents, 0, 1); | 173 | buffer_defaults.downcase_table, 0, 1); |
| 174 | #else | 174 | #else |
| 175 | bufp = compile_pattern (match, 0, 0, 0, 1); | 175 | bufp = compile_pattern (match, 0, Qnil, 0, 1); |
| 176 | #endif | 176 | #endif |
| 177 | } | 177 | } |
| 178 | 178 | ||