Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
44820cc3
Commit
44820cc3
authored
Mar 03, 1995
by
Karl Heuer
Browse files
(Fcall_interactively): Disallow switch-frame events when reading `k' or `K'
specification.
parent
ce98e608
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
src/callint.c
src/callint.c
+2
-2
No files found.
src/callint.c
View file @
44820cc3
...
@@ -476,13 +476,13 @@ Otherwise, this is done only if an arg is read using the minibuffer.")
...
@@ -476,13 +476,13 @@ Otherwise, this is done only if an arg is read using the minibuffer.")
break
;
break
;
case
'k'
:
/* Key sequence. */
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
];
teml
=
args
[
i
];
visargs
[
i
]
=
Fkey_description
(
teml
);
visargs
[
i
]
=
Fkey_description
(
teml
);
break
;
break
;
case
'K'
:
/* Key sequence to be defined. */
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
];
teml
=
args
[
i
];
visargs
[
i
]
=
Fkey_description
(
teml
);
visargs
[
i
]
=
Fkey_description
(
teml
);
break
;
break
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment