# HG changeset patch # User Gerd Moellmann # Date 975941290 0 # Node ID f3a177a97f1244fdcec12e7b81f40b2325ea79fd # Parent ddf7d535df2a96ab49ff81f5feb3da687d7f8559 (Fread_key_sequence): Don't start the busy cursor timer after having read a key. It's not good for code reading several keys in a loop, like an input method. diff -r ddf7d535df2a -r f3a177a97f12 src/keyboard.c --- a/src/keyboard.c Mon Dec 04 14:39:37 2000 +0000 +++ b/src/keyboard.c Mon Dec 04 14:48:10 2000 +0000 @@ -8858,10 +8858,14 @@ prompt, ! NILP (dont_downcase_last), ! NILP (can_return_switch_frame), 0); +#if 0 /* The following is fine for code reading a key sequence and + then proceeding with a lenghty compuation, but it's not good + for code reading keys in a loop, like an input method. */ #ifdef HAVE_X_WINDOWS if (display_busy_cursor_p) start_busy_cursor (); #endif +#endif if (i == -1) {