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:
parent
90e1eb6f4d
commit
33b43fa6ee
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user