(single_keymap_panes, Fx_popup_menu): Don't use XFASTINT as an lvalue.
authorKarl Heuer <kwzh@gnu.org>
Tue, 4 Oct 1994 19:49:16 +0000 (19:49 +0000)
committerKarl Heuer <kwzh@gnu.org>
Tue, 4 Oct 1994 19:49:16 +0000 (19:49 +0000)
src/xmenu.c

index 4a06c2c..4e87f70 100644 (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