diff options
author | Eli Zaretskii <eliz@gnu.org> | 2011-02-14 19:35:21 +0200 |
---|---|---|
committer | Eli Zaretskii <eliz@gnu.org> | 2011-02-14 19:35:21 +0200 |
commit | fc3ca11315448fa7310f064fd9953b943ae733bf (patch) | |
tree | d18258c434b781ae5c451f3c63ffc63983a2290b /src/s | |
parent | 3928f2b67e69cd22995558cc205a2fc6aa33d477 (diff) | |
download | emacs-fc3ca11315448fa7310f064fd9953b943ae733bf.tar.gz |
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/s')
-rw-r--r-- | src/s/ms-w32.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/s/ms-w32.h b/src/s/ms-w32.h index 4c3b84dfe4c..34814687597 100644 --- a/src/s/ms-w32.h +++ b/src/s/ms-w32.h @@ -181,7 +181,7 @@ struct sigaction { #define HAVE_MENUS 1 #endif -#define MODE_LINE_BINARY_TEXT(_b_) (NILP ((_b_)->buffer_file_type) ? "T" : "B") +#define MODE_LINE_BINARY_TEXT(_b_) (NILP (B_(_b_,buffer_file_type)) ? "T" : "B") /* Get some redefinitions in place. */ |