1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-12-17 10:06:13 +00:00

(single_keymap_panes, Fx_popup_menu): Don't use XFASTINT as an lvalue.

This commit is contained in:
Karl Heuer 1994-10-04 19:49:16 +00:00
parent 90e1eb6f4d
commit 33b43fa6ee

View File

@ -536,7 +536,7 @@ single_keymap_panes (keymap, pane_name, prefix, notreal)
for (c = 0; c < len; c++)
{
Lisp_Object character;
XFASTINT (character) = c;
XSETFASTINT (character, c);
item1 = XVECTOR (item)->contents[c];
if (CONSP (item1))
{
@ -731,8 +731,8 @@ cached information about equivalent key sequences.")
else
{
window = selected_window;
XFASTINT (x) = 0;
XFASTINT (y) = 0;
XSETFASTINT (x, 0);
XSETFASTINT (y, 0);
}
}
else