diff src/keyboard.c @ 106738:04c6036b9437

* keyboard.c (read_key_sequence): Catch keyboard switch after making a new tty frame (Bug#5095).
author Chong Yidong <cyd@stupidchicken.com>
date Tue, 05 Jan 2010 07:04:04 -0700
parents 0d1366f2a045
children 65abe959e89a
line wrap: on
line diff
--- a/src/keyboard.c	Tue Jan 05 21:03:13 2010 +0900
+++ b/src/keyboard.c	Tue Jan 05 07:04:04 2010 -0700
@@ -9502,7 +9502,13 @@
 	    key = read_char (NILP (prompt), nmaps,
 			     (Lisp_Object *) submaps, last_nonmenu_event,
 			     &used_mouse_menu, NULL);
-	    if (INTEGERP (key) && XINT (key) == -2) /* wrong_kboard_jmpbuf */
+	    if ((INTEGERP (key) && XINT (key) == -2) /* wrong_kboard_jmpbuf */
+		/* When switching to a new tty (with a new keyboard),
+		   read_char returns the new buffer, rather than -2
+		   (Bug#5095).  This is because `terminal-init-xterm'
+		   calls read-char, which eats the wrong_kboard_jmpbuf
+		   return.  Any better way to fix this? -- cyd  */
+		|| (interrupted_kboard != current_kboard))
 	      {
 		int found = 0;
 		struct kboard *k;