Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
c872c6b2
Commit
c872c6b2
authored
Jan 09, 1998
by
Richard M. Stallman
Browse files
(Fdirectory_files): Fix arg to compile_pattern.
parent
5d967c7a
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
2 deletions
+4
-2
src/dired.c
src/dired.c
+4
-2
No files found.
src/dired.c
View file @
c872c6b2
...
...
@@ -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
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment