# HG changeset patch # User Kenichi Handa # Date 880630697 0 # Node ID 94bdb0d152a5c347b46dbe24efa6a05c8359b5b9 # Parent cfba77fb710b3b3482b447a6e6cc65260a6a6b3f (Fexecute_extended_command): Give Voverriding_local_map as the first arg to Faref. diff -r cfba77fb710b -r 94bdb0d152a5 src/keyboard.c --- a/src/keyboard.c Thu Nov 27 11:26:45 1997 +0000 +++ b/src/keyboard.c Thu Nov 27 11:38:17 1997 +0000 @@ -7261,7 +7261,8 @@ /* If the command has a key binding, print it now. */ if (!NILP (bindings) - && ! (ARRAYP (bindings) && EQ (Faref (bindings), Qmouse_movement))) + && ! (ARRAYP (bindings) + && EQ (Faref (Voverriding_local_map, bindings), Qmouse_movement))) { /* But first wait, and skip the message if there is input. */ if (!NILP (Fsit_for ((NUMBERP (Vsuggest_key_bindings) @@ -7534,7 +7535,6 @@ int old_height, old_width; int width, height; struct gcpro gcpro1, gcpro2; - extern init_sys_modes (); if (!NILP (stuffstring)) CHECK_STRING (stuffstring, 0);