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
1989e7bc
Commit
1989e7bc
authored
Jan 24, 1995
by
Richard M. Stallman
Browse files
(Fcall_interactively): Define K mostly like k.
Pass new arg to Fread_key_sequence.
parent
309b0fc8
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
2 deletions
+8
-2
src/callint.c
src/callint.c
+8
-2
No files found.
src/callint.c
View file @
1989e7bc
...
...
@@ -462,8 +462,14 @@ Otherwise, this is done only if an arg is read using the minibuffer.")
Qnil
,
Qnil
,
Qnil
,
Qnil
);
break
;
case
'k'
:
/* Key sequence (string) */
args
[
i
]
=
Fread_key_sequence
(
build_string
(
prompt
),
Qnil
);
case
'k'
:
/* Key sequence. */
args
[
i
]
=
Fread_key_sequence
(
build_string
(
prompt
),
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
);
teml
=
args
[
i
];
visargs
[
i
]
=
Fkey_description
(
teml
);
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