diff options
Diffstat (limited to 'src/macterm.c')
| -rw-r--r-- | src/macterm.c | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/src/macterm.c b/src/macterm.c index bee1af5ab71..316e61cc537 100644 --- a/src/macterm.c +++ b/src/macterm.c | |||
| @@ -11869,19 +11869,20 @@ mac_initialize () | |||
| 11869 | redeem_scroll_bar_hook = XTredeem_scroll_bar; | 11869 | redeem_scroll_bar_hook = XTredeem_scroll_bar; |
| 11870 | judge_scroll_bars_hook = XTjudge_scroll_bars; | 11870 | judge_scroll_bars_hook = XTjudge_scroll_bars; |
| 11871 | 11871 | ||
| 11872 | scroll_region_ok = 1; /* we'll scroll partial frames */ | 11872 | TTY_SCROLL_REGION_OK (CURTTY ()) = 1; /* we'll scroll partial frames */ |
| 11873 | char_ins_del_ok = 1; | 11873 | TTY_CHAR_INS_DEL_OK (CURTTY ()) = 1; |
| 11874 | line_ins_del_ok = 1; /* we'll just blt 'em */ | 11874 | TTY_LINE_INS_DEL_OK (CURTTY ()) = 1; /* we'll just blt 'em */ |
| 11875 | fast_clear_end_of_line = 1; /* X does this well */ | 11875 | TTY_FAST_CLEAR_END_OF_LINE (CURTTY ()) = 1; /* X does this well */ |
| 11876 | memory_below_frame = 0; /* we don't remember what scrolls | 11876 | TTY_MEMORY_BELOW_FRAME (CURTTY ()) = 0; /* we don't remember what |
| 11877 | off the bottom */ | 11877 | scrolls off the |
| 11878 | bottom */ | ||
| 11878 | baud_rate = 19200; | 11879 | baud_rate = 19200; |
| 11879 | 11880 | ||
| 11880 | last_tool_bar_item = -1; | 11881 | last_tool_bar_item = -1; |
| 11881 | any_help_event_p = 0; | 11882 | any_help_event_p = 0; |
| 11882 | 11883 | ||
| 11883 | /* Try to use interrupt input; if we can't, then start polling. */ | 11884 | /* Try to use interrupt input; if we can't, then start polling. */ |
| 11884 | Fset_input_mode (Qt, Qnil, Qt, Qnil); | 11885 | Fset_input_interrupt_mode (Qt); |
| 11885 | 11886 | ||
| 11886 | BLOCK_INPUT; | 11887 | BLOCK_INPUT; |
| 11887 | 11888 | ||