summaryrefslogtreecommitdiff
path: root/src/macterm.c
diff options
context:
space:
mode:
authorDan Nicolaescu <dann@ics.uci.edu>2007-06-04 02:16:32 +0000
committerDan Nicolaescu <dann@ics.uci.edu>2007-06-04 02:16:32 +0000
commit88acaaf20b2fd0af64eea1b5d4f8fa8227c32e86 (patch)
treec87acbf5ad6c808ce999cb4cf0c576b0a0318376 /src/macterm.c
parent34c6724464237db4bfd5b3fa57e8b0f66a92f618 (diff)
downloademacs-88acaaf20b2fd0af64eea1b5d4f8fa8227c32e86.tar.gz
emacs-88acaaf20b2fd0af64eea1b5d4f8fa8227c32e86.tar.bz2
emacs-88acaaf20b2fd0af64eea1b5d4f8fa8227c32e86.zip
* term.c (init_tty): Use terminal specific mouse_position_hook.
* macterm.c (mac_create_terminal): Indent and rearrange to be more similar to the X11 version. * config.in: Disable multi-keyboard support on a mac. * loadup.el: Use a better feature test on a mac.
Diffstat (limited to 'src/macterm.c')
-rw-r--r--src/macterm.c14
1 files changed, 8 insertions, 6 deletions
diff --git a/src/macterm.c b/src/macterm.c
index 1faf72485ce..0b8fec3a089 100644
--- a/src/macterm.c
+++ b/src/macterm.c
@@ -11870,7 +11870,6 @@ mac_create_terminal (struct mac_display_info *dpyinfo)
terminal->display_info.mac = dpyinfo;
dpyinfo->terminal = terminal;
- terminal->rif = &x_redisplay_interface;
terminal->clear_frame_hook = x_clear_frame;
terminal->ins_del_lines_hook = x_ins_del_lines;
terminal->delete_glyphs_hook = x_delete_glyphs;
@@ -11885,12 +11884,15 @@ mac_create_terminal (struct mac_display_info *dpyinfo)
terminal->mouse_position_hook = XTmouse_position;
terminal->frame_rehighlight_hook = XTframe_rehighlight;
terminal->frame_raise_lower_hook = XTframe_raise_lower;
+ /* terminal->fullscreen_hook = XTfullscreen_hook; */
+ terminal->set_vertical_scroll_bar_hook = XTset_vertical_scroll_bar;
+ terminal->condemn_scroll_bars_hook = XTcondemn_scroll_bars;
+ terminal->redeem_scroll_bar_hook = XTredeem_scroll_bar;
+ terminal->judge_scroll_bars_hook = XTjudge_scroll_bars;
+ terminal->delete_frame_hook = x_destroy_window;
+ /* terminal->delete_terminal_hook = x_delete_terminal; */
- terminal->set_vertical_scroll_bar_hook = XTset_vertical_scroll_bar;
- terminal->condemn_scroll_bars_hook = XTcondemn_scroll_bars;
- terminal->redeem_scroll_bar_hook = XTredeem_scroll_bar;
- terminal->judge_scroll_bars_hook = XTjudge_scroll_bars;
-
+ terminal->rif = &x_redisplay_interface;
#if 0
TTY_SCROLL_REGION_OK (CURTTY ()) = 1; /* we'll scroll partial frames */
TTY_CHAR_INS_DEL_OK (CURTTY ()) = 1;