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.
This commit is contained in:
Eli Zaretskii 2011-02-14 19:58:13 +02:00
parent fc3ca11315
commit ef72f149bd
3 changed files with 7 additions and 4 deletions

View file

@ -1,5 +1,8 @@
2011-02-14 Eli Zaretskii <eliz@gnu.org>
* msdos.c (IT_frame_up_to_date):
* s/msdos.h (MODE_LINE_BINARY_TEXT): Use B_ for the MS-DOS build.
* dired.c (directory_files_internal):
* fileio.c (Finsert_file_contents):
* insdel.c (prepare_to_modify_buffer):

View file

@ -1317,12 +1317,12 @@ IT_frame_up_to_date (struct frame *f)
{
struct buffer *b = XBUFFER (sw->buffer);
if (EQ (b->cursor_type, Qt))
if (EQ (B_ (b,cursor_type), Qt))
new_cursor = frame_desired_cursor;
else if (NILP (b->cursor_type)) /* nil means no cursor */
else if (NILP (B_ (b, cursor_type))) /* nil means no cursor */
new_cursor = Fcons (Qbar, make_number (0));
else
new_cursor = b->cursor_type;
new_cursor = B_ (b, cursor_type);
}
IT_set_cursor_type (f, new_cursor);

View file

@ -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