Mercurial > emacs
changeset 9984:8f17a2e2b777
(Fdirectory_files): Pass new arg to `compile_pattern'.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Wed, 16 Nov 1994 20:30:12 +0000 |
parents | ef6e1637c777 |
children | 0a58678f81c6 |
files | src/dired.c |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- 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 }