diff options
| author | Eli Zaretskii | 2013-09-26 10:37:16 +0300 |
|---|---|---|
| committer | Eli Zaretskii | 2013-09-26 10:37:16 +0300 |
| commit | b87c4ff2817e71ca71b028792200b1e069a95e04 (patch) | |
| tree | bfe00c0655fa02078a9ab2c633ea06d90c4a2064 /src/msdos.c | |
| parent | bbc108377873aa6ed7cf21c731770103096eea39 (diff) | |
| parent | ba355de014b75ed104da4777f909db70d62f2357 (diff) | |
| download | emacs-b87c4ff2817e71ca71b028792200b1e069a95e04.tar.gz emacs-b87c4ff2817e71ca71b028792200b1e069a95e04.zip | |
Merge from trunk.
Diffstat (limited to 'src/msdos.c')
| -rw-r--r-- | src/msdos.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/msdos.c b/src/msdos.c index 5ad227bd67c..2ba7a16a443 100644 --- a/src/msdos.c +++ b/src/msdos.c | |||
| @@ -408,7 +408,7 @@ static int term_setup_done; | |||
| 408 | 408 | ||
| 409 | static unsigned short outside_cursor; | 409 | static unsigned short outside_cursor; |
| 410 | 410 | ||
| 411 | /* Similar to the_only_frame. */ | 411 | /* The only display since MS-DOS does not support multiple ones. */ |
| 412 | struct tty_display_info the_only_display_info; | 412 | struct tty_display_info the_only_display_info; |
| 413 | 413 | ||
| 414 | /* Support for DOS/V (allows Japanese characters to be displayed on | 414 | /* Support for DOS/V (allows Japanese characters to be displayed on |
| @@ -1222,7 +1222,7 @@ IT_cmgoto (struct frame *f) | |||
| 1222 | static void | 1222 | static void |
| 1223 | IT_update_begin (struct frame *f) | 1223 | IT_update_begin (struct frame *f) |
| 1224 | { | 1224 | { |
| 1225 | struct tty_display_info *display_info = FRAME_X_DISPLAY_INFO (f); | 1225 | struct tty_display_info *display_info = FRAME_DISPLAY_INFO (f); |
| 1226 | Mouse_HLInfo *hlinfo = &display_info->mouse_highlight; | 1226 | Mouse_HLInfo *hlinfo = &display_info->mouse_highlight; |
| 1227 | struct frame *mouse_face_frame = hlinfo->mouse_face_mouse_frame; | 1227 | struct frame *mouse_face_frame = hlinfo->mouse_face_mouse_frame; |
| 1228 | 1228 | ||
| @@ -1279,7 +1279,7 @@ IT_update_begin (struct frame *f) | |||
| 1279 | static void | 1279 | static void |
| 1280 | IT_update_end (struct frame *f) | 1280 | IT_update_end (struct frame *f) |
| 1281 | { | 1281 | { |
| 1282 | struct tty_display_info *dpyinfo = FRAME_X_DISPLAY_INFO (f); | 1282 | struct tty_display_info *dpyinfo = FRAME_DISPLAY_INFO (f); |
| 1283 | 1283 | ||
| 1284 | if (dpyinfo->termscript) | 1284 | if (dpyinfo->termscript) |
| 1285 | fprintf (dpyinfo->termscript, "\n<UPDATE_END\n"); | 1285 | fprintf (dpyinfo->termscript, "\n<UPDATE_END\n"); |
| @@ -2387,7 +2387,7 @@ Each input key receives two values in this vector: first the ASCII code, | |||
| 2387 | and then the scan code. */) | 2387 | and then the scan code. */) |
| 2388 | (void) | 2388 | (void) |
| 2389 | { | 2389 | { |
| 2390 | Lisp_Object val, *keys = XVECTOR (recent_doskeys)->contents; | 2390 | Lisp_Object val, *keys = XVECTOR (recent_doskeys)->u.contents; |
| 2391 | 2391 | ||
| 2392 | if (total_doskeys < NUM_RECENT_DOSKEYS) | 2392 | if (total_doskeys < NUM_RECENT_DOSKEYS) |
| 2393 | return Fvector (total_doskeys, keys); | 2393 | return Fvector (total_doskeys, keys); |