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
a1bfe073
Commit
a1bfe073
authored
Apr 16, 2004
by
Kim F. Storm
Browse files
(Fkey_description): Change callers.
parent
b378e2c7
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
5 deletions
+5
-5
src/callint.c
src/callint.c
+2
-2
src/doc.c
src/doc.c
+1
-1
src/keyboard.c
src/keyboard.c
+2
-2
No files found.
src/callint.c
View file @
a1bfe073
...
...
@@ -612,7 +612,7 @@ supply if the command inquires which events were used to invoke it. */)
Qnil
,
Qnil
,
Qnil
,
Qnil
);
unbind_to
(
speccount1
,
Qnil
);
teml
=
args
[
i
];
visargs
[
i
]
=
Fkey_description
(
teml
);
visargs
[
i
]
=
Fkey_description
(
teml
,
Qnil
);
/* If the key sequence ends with a down-event,
discard the following up-event. */
...
...
@@ -639,7 +639,7 @@ supply if the command inquires which events were used to invoke it. */)
args
[
i
]
=
Fread_key_sequence
(
build_string
(
callint_message
),
Qnil
,
Qt
,
Qnil
,
Qnil
);
teml
=
args
[
i
];
visargs
[
i
]
=
Fkey_description
(
teml
);
visargs
[
i
]
=
Fkey_description
(
teml
,
Qnil
);
unbind_to
(
speccount1
,
Qnil
);
/* If the key sequence ends with a down-event,
...
...
src/doc.c
View file @
a1bfe073
...
...
@@ -808,7 +808,7 @@ thus, \\=\\=\\=\\= puts \\=\\= into the output, and \\=\\=\\=\\[ puts \\=\\[ int
}
else
{
/* function is on a key */
tem
=
Fkey_description
(
tem
);
tem
=
Fkey_description
(
tem
,
Qnil
);
goto
subst_string
;
}
}
...
...
src/keyboard.c
View file @
a1bfe073
...
...
@@ -7407,7 +7407,7 @@ parse_menu_item (item, notreal, inmenubar)
newcache = chkcache;
if (chkcache)
{
tem = Fkey_description (tem);
tem = Fkey_description (tem
, Qnil
);
if (CONSP (prefix))
{
if (STRINGP (XCAR (prefix)))
...
...
@@ -9806,7 +9806,7 @@ DEFUN ("execute-extended-command", Fexecute_extended_command, Sexecute_extended_
int count = SPECPDL_INDEX ();
record_unwind_protect (pop_message_unwind, Qnil);
binding = Fkey_description (bindings);
binding = Fkey_description (bindings
, Qnil
);
newmessage
= (char *) alloca (SCHARS (SYMBOL_NAME (function))
...
...
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