diff options
author | Eli Zaretskii <eliz@gnu.org> | 2011-02-14 19:58:13 +0200 |
---|---|---|
committer | Eli Zaretskii <eliz@gnu.org> | 2011-02-14 19:58:13 +0200 |
commit | ef72f149bdb1aeaf2587904f578bb26ec4c1bf99 (patch) | |
tree | cd844c2a91831a63b43fe6ac60f8ceca8134a51b /src/s/msdos.h | |
parent | fc3ca11315448fa7310f064fd9953b943ae733bf (diff) | |
download | emacs-ef72f149bdb1aeaf2587904f578bb26ec4c1bf99.tar.gz emacs-ef72f149bdb1aeaf2587904f578bb26ec4c1bf99.tar.bz2 emacs-ef72f149bdb1aeaf2587904f578bb26ec4c1bf99.zip |
Fix the MS-DOS build due to introduction of B_.
msdos.c (IT_frame_up_to_date):
s/msdos.h (MODE_LINE_BINARY_TEXT): Use B_ for the MS-DOS build.
Diffstat (limited to 'src/s/msdos.h')
-rw-r--r-- | src/s/msdos.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/s/msdos.h b/src/s/msdos.h index 88afaa83455..a1d23521a0a 100644 --- a/src/s/msdos.h +++ b/src/s/msdos.h @@ -92,7 +92,7 @@ You lose; /* Emacs for DOS must be compiled with DJGPP */ /* Mode line description of a buffer's type. */ -#define MODE_LINE_BINARY_TEXT(buf) (NILP(buf->buffer_file_type) ? "T" : "B") +#define MODE_LINE_BINARY_TEXT(buf) (NILP(B_(buf,buffer_file_type)) ? "T" : "B") /* We have (the code to control) a mouse. */ #define HAVE_MOUSE |