]> git.eshelyaron.com Git - emacs.git/commitdiff
(Fdirectory_files): Fix arg to compile_pattern.
authorRichard M. Stallman <rms@gnu.org>
Fri, 9 Jan 1998 23:28:38 +0000 (23:28 +0000)
committerRichard M. Stallman <rms@gnu.org>
Fri, 9 Jan 1998 23:28:38 +0000 (23:28 +0000)
src/dired.c

index 60fba4f6839a104ca30c545c3eaa2d670b4c0538..7176596032e3da1225e5dbab08a4c9a775852ba1 100644 (file)
@@ -166,11 +166,13 @@ If NOSORT is non-nil, the list is not sorted--its order is unpredictable.\n\
       /* MATCH might be a flawed regular expression.  Rather than
         catching and signaling our own errors, we just call
         compile_pattern to do the work for us.  */
+      /* Pass 1 for the MULTIBYTE arg
+        because we do make multibyte strings if the contents warrant.  */
 #ifdef VMS
       bufp = compile_pattern (match, 0,
-                             buffer_defaults.downcase_table->contents, 0);
+                             buffer_defaults.downcase_table->contents, 0, 1);
 #else
-      bufp = compile_pattern (match, 0, 0, 0);
+      bufp = compile_pattern (match, 0, 0, 0, 1);
 #endif
     }