diff options
| author | Eli Zaretskii | 2011-02-14 19:35:21 +0200 |
|---|---|---|
| committer | Eli Zaretskii | 2011-02-14 19:35:21 +0200 |
| commit | fc3ca11315448fa7310f064fd9953b943ae733bf (patch) | |
| tree | d18258c434b781ae5c451f3c63ffc63983a2290b /src/dired.c | |
| parent | 3928f2b67e69cd22995558cc205a2fc6aa33d477 (diff) | |
| download | emacs-fc3ca11315448fa7310f064fd9953b943ae733bf.tar.gz emacs-fc3ca11315448fa7310f064fd9953b943ae733bf.zip | |
Fix the MS-Windows build due to introduction of B_.
dired.c (directory_files_internal):
fileio.c (Finsert_file_contents):
insdel.c (prepare_to_modify_buffer):
xdisp.c (pos_visible_p):
s/ms-w32.h (MODE_LINE_BINARY_TEXT):
w32fns.c (Fw32_shell_execute, Fx_show_tip, x_create_tip_frame):
Use B_ for the MS-Windows build.
From Tom Tromey:
buffer.c (init_buffer_once, syms_of_buffer): Use B_ in DOS_NT case.
Diffstat (limited to 'src/dired.c')
| -rw-r--r-- | src/dired.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dired.c b/src/dired.c index e37055258d6..f1dc03b56d0 100644 --- a/src/dired.c +++ b/src/dired.c | |||
| @@ -158,7 +158,7 @@ directory_files_internal (Lisp_Object directory, Lisp_Object full, Lisp_Object m | |||
| 158 | # ifdef WINDOWSNT | 158 | # ifdef WINDOWSNT |
| 159 | /* Windows users want case-insensitive wildcards. */ | 159 | /* Windows users want case-insensitive wildcards. */ |
| 160 | bufp = compile_pattern (match, 0, | 160 | bufp = compile_pattern (match, 0, |
| 161 | buffer_defaults.case_canon_table, 0, 1); | 161 | B_ (&buffer_defaults, case_canon_table), 0, 1); |
| 162 | # else /* !WINDOWSNT */ | 162 | # else /* !WINDOWSNT */ |
| 163 | bufp = compile_pattern (match, 0, Qnil, 0, 1); | 163 | bufp = compile_pattern (match, 0, Qnil, 0, 1); |
| 164 | # endif /* !WINDOWSNT */ | 164 | # endif /* !WINDOWSNT */ |