summaryrefslogtreecommitdiff
path: root/src/frame.h
diff options
context:
space:
mode:
authorEli Zaretskii <eliz@gnu.org>2010-11-05 14:11:22 +0200
committerEli Zaretskii <eliz@gnu.org>2010-11-05 14:11:22 +0200
commit7ac5dac91307a99913c558898c520da649dbf4ea (patch)
treed2cebebeef3ea822d4bf46111903ec7783f11ab8 /src/frame.h
parent28118eb6e58a8461e2deef53b68fea513eaef825 (diff)
downloademacs-7ac5dac91307a99913c558898c520da649dbf4ea.tar.gz
Fix mouse redesigned mouse highlight on MSDOS.
dispnew.c (init_display): Setup initial frame's output_data for text terminal frames. frame.h (MOUSE_HL_INFO): Fix TTY definition. msdos.h (initialize_msdos_display): Add prototype.
Diffstat (limited to 'src/frame.h')
-rw-r--r--src/frame.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/frame.h b/src/frame.h
index 00c062cfd36..72c0f6be2d7 100644
--- a/src/frame.h
+++ b/src/frame.h
@@ -550,7 +550,7 @@ typedef struct frame *FRAME_PTR;
#define MOUSE_HL_INFO(F) \
(FRAME_WINDOW_P(F) \
? &(FRAME_X_DISPLAY_INFO(F)->mouse_highlight) \
- : &(((F)->output_data.tty)->mouse_highlight))
+ : &(((F)->output_data.tty->display_info)->mouse_highlight))
/* Nonzero if frame F is still alive (not deleted). */
#define FRAME_LIVE_P(f) ((f)->terminal != 0)