comparison src/w32term.c @ 97141:840bd675fd85 before-remove-vms

* s/ms-w32.h (MULTI_KBOARD): Remove. * xterm.c: * xselect.c: * xfns.c: * window.c: * w32term.c: * w32fns.c: * terminal.c: * termhooks.h: * term.c: * sysdep.c: * keyboard.h: * keyboard.c: * frame.h: * frame.c: * frame.c: Remove references to MULTI_KBOARD, it is now the default. * config.in: Regenerate. * config.nt (MULTI_KBOARD): Remove. * configure.in (MULTI_KBOARD): Remove.
author Dan Nicolaescu <dann@ics.uci.edu>
date Thu, 31 Jul 2008 02:47:32 +0000
parents e4d0521fc1d0
children cdeb60ce9393
comparison
equal deleted inserted replaced
97140:9637a590d441 97141:840bd675fd85
6106 terminal->line_ins_del_ok = 1; /* We'll just blt 'em. */ 6106 terminal->line_ins_del_ok = 1; /* We'll just blt 'em. */
6107 terminal->fast_clear_end_of_line = 1; /* X does this well. */ 6107 terminal->fast_clear_end_of_line = 1; /* X does this well. */
6108 terminal->memory_below_frame = 0; /* We don't remember what scrolls 6108 terminal->memory_below_frame = 0; /* We don't remember what scrolls
6109 off the bottom. */ 6109 off the bottom. */
6110 6110
6111 #ifdef MULTI_KBOARD
6112 /* We don't yet support separate terminals on W32, so don't try to share 6111 /* We don't yet support separate terminals on W32, so don't try to share
6113 keyboards between virtual terminals that are on the same physical 6112 keyboards between virtual terminals that are on the same physical
6114 terminal like X does. */ 6113 terminal like X does. */
6115 terminal->kboard = (KBOARD *) xmalloc (sizeof (KBOARD)); 6114 terminal->kboard = (KBOARD *) xmalloc (sizeof (KBOARD));
6116 init_kboard (terminal->kboard); 6115 init_kboard (terminal->kboard);
6121 That would cause problems if a file loaded on startup tries to 6120 That would cause problems if a file loaded on startup tries to
6122 prompt in the mini-buffer. */ 6121 prompt in the mini-buffer. */
6123 if (current_kboard == initial_kboard) 6122 if (current_kboard == initial_kboard)
6124 current_kboard = terminal->kboard; 6123 current_kboard = terminal->kboard;
6125 terminal->kboard->reference_count++; 6124 terminal->kboard->reference_count++;
6126 #endif
6127 6125
6128 return terminal; 6126 return terminal;
6129 } 6127 }
6130 6128
6131 static void 6129 static void