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
7e6491d3
Commit
7e6491d3
authored
Oct 17, 1992
by
Jim Blandy
Browse files
* callint.c (Fcall_interactively): Change handling of 'e' spec;
this_command_keys is now a vector.
parent
22cb290f
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
2 deletions
+3
-2
src/callint.c
src/callint.c
+3
-2
No files found.
src/callint.c
View file @
7e6491d3
...
...
@@ -400,14 +400,15 @@ Otherwise, this is done only if an arg is read using the minibuffer.")
case
'e'
:
/* The invoking event. */
/* Find the next parameterized event. */
while
(
next_event
<
this_command_key_count
&&
!
EVENT_HAS_PARAMETERS
(
this_command_keys
[
next_event
]))
&&
!
(
EVENT_HAS_PARAMETERS
(
XVECTOR
(
this_command_keys
)
->
contents
[
next_event
])))
next_event
++
;
if
(
next_event
>=
this_command_key_count
)
error
(
"%s must be bound to an event with parameters"
,
(
XTYPE
(
function
)
==
Lisp_Symbol
?
(
char
*
)
XSYMBOL
(
function
)
->
name
->
data
:
"command"
));
args
[
i
]
=
this_command_keys
[
next_event
++
];
args
[
i
]
=
XVECTOR
(
this_command_keys
)
->
contents
[
next_event
++
];
varies
[
i
]
=
-
1
;
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