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/fileio.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/fileio.c')
| -rw-r--r-- | src/fileio.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/fileio.c b/src/fileio.c index afef7888b78..4a4935b43a2 100644 --- a/src/fileio.c +++ b/src/fileio.c | |||
| @@ -4110,9 +4110,9 @@ variable `last-coding-system-used' to the coding system actually used. */) | |||
| 4110 | if ((VECTORP (CODING_ID_EOL_TYPE (coding.id)) | 4110 | if ((VECTORP (CODING_ID_EOL_TYPE (coding.id)) |
| 4111 | || EQ (CODING_ID_EOL_TYPE (coding.id), Qunix)) | 4111 | || EQ (CODING_ID_EOL_TYPE (coding.id), Qunix)) |
| 4112 | && ! CODING_REQUIRE_DECODING (&coding)) | 4112 | && ! CODING_REQUIRE_DECODING (&coding)) |
| 4113 | current_buffer->buffer_file_type = Qt; | 4113 | B_ (current_buffer, buffer_file_type) = Qt; |
| 4114 | else | 4114 | else |
| 4115 | current_buffer->buffer_file_type = Qnil; | 4115 | B_ (current_buffer, buffer_file_type) = Qnil; |
| 4116 | #endif | 4116 | #endif |
| 4117 | 4117 | ||
| 4118 | handled: | 4118 | handled: |