From: Karl Heuer Date: Fri, 3 Mar 1995 01:51:09 +0000 (+0000) Subject: (Fcall_interactively): Disallow switch-frame events when reading `k' or `K' X-Git-Tag: emacs-19.34~4954 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=44820cc38c9b329d3821ea69ca1989f7634fa935;p=emacs.git (Fcall_interactively): Disallow switch-frame events when reading `k' or `K' specification. --- diff --git a/src/callint.c b/src/callint.c index 93ecf3b7feb..be3517efcd4 100644 --- a/src/callint.c +++ b/src/callint.c @@ -476,13 +476,13 @@ Otherwise, this is done only if an arg is read using the minibuffer.") break; case 'k': /* Key sequence. */ - args[i] = Fread_key_sequence (build_string (prompt), Qnil, Qnil); + args[i] = Fread_key_sequence (build_string (prompt), Qnil, Qnil, Qnil); teml = args[i]; visargs[i] = Fkey_description (teml); break; case 'K': /* Key sequence to be defined. */ - args[i] = Fread_key_sequence (build_string (prompt), Qnil, Qt); + args[i] = Fread_key_sequence (build_string (prompt), Qnil, Qt, Qnil); teml = args[i]; visargs[i] = Fkey_description (teml); break;