diff options
Diffstat (limited to 'src/s')
| -rw-r--r-- | src/s/ms-w32.h | 2 | ||||
| -rw-r--r-- | src/s/msdos.h | 2 |
2 files changed, 2 insertions, 2 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 { | |||
| 181 | #define HAVE_MENUS 1 | 181 | #define HAVE_MENUS 1 |
| 182 | #endif | 182 | #endif |
| 183 | 183 | ||
| 184 | #define MODE_LINE_BINARY_TEXT(_b_) (NILP ((_b_)->buffer_file_type) ? "T" : "B") | 184 | #define MODE_LINE_BINARY_TEXT(_b_) (NILP (B_(_b_,buffer_file_type)) ? "T" : "B") |
| 185 | 185 | ||
| 186 | /* Get some redefinitions in place. */ | 186 | /* Get some redefinitions in place. */ |
| 187 | 187 | ||
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 */ | |||
| 92 | 92 | ||
| 93 | 93 | ||
| 94 | /* Mode line description of a buffer's type. */ | 94 | /* Mode line description of a buffer's type. */ |
| 95 | #define MODE_LINE_BINARY_TEXT(buf) (NILP(buf->buffer_file_type) ? "T" : "B") | 95 | #define MODE_LINE_BINARY_TEXT(buf) (NILP(B_(buf,buffer_file_type)) ? "T" : "B") |
| 96 | 96 | ||
| 97 | /* We have (the code to control) a mouse. */ | 97 | /* We have (the code to control) a mouse. */ |
| 98 | #define HAVE_MOUSE | 98 | #define HAVE_MOUSE |