changeset 9341:e5ecfda9e730

(single_keymap_panes, Fx_popup_menu): Don't use XFASTINT as an lvalue.
author Karl Heuer <kwzh@gnu.org>
date Tue, 04 Oct 1994 19:49:16 +0000
parents 97cfba406b7b
children fdccacaec145
files src/xmenu.c
diffstat 1 files changed, 3 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/src/xmenu.c	Tue Oct 04 19:48:36 1994 +0000
+++ b/src/xmenu.c	Tue Oct 04 19:49:16 1994 +0000
@@ -536,7 +536,7 @@
 	  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 @@
 	  else
 	    {
 	      window = selected_window;
-	      XFASTINT (x) = 0;
-	      XFASTINT (y) = 0;
+	      XSETFASTINT (x, 0);
+	      XSETFASTINT (y, 0);
 	    }
 	}
       else