]> git.eshelyaron.com Git - emacs.git/commitdiff
(create_process): Don't use XFASTINT as an lvalue.
authorKarl Heuer <kwzh@gnu.org>
Tue, 4 Oct 1994 16:16:33 +0000 (16:16 +0000)
committerKarl Heuer <kwzh@gnu.org>
Tue, 4 Oct 1994 16:16:33 +0000 (16:16 +0000)
src/vmsproc.c

index 5e347bbaa1020974bb7ba3f98f93766522250a5f..48834d328f69eb3a4ab18cf4ce0717636699ae0a 100644 (file)
@@ -726,8 +726,8 @@ create_process (process, new_argv)
   /* Record this as an active process, with its channels.
      As a result, child_setup will close Emacs's side of the pipes.  */
   chan_process[inchannel] = process;
-  XFASTINT (XPROCESS (process)->infd) = inchannel;
-  XFASTINT (XPROCESS (process)->outfd) = outchannel;
+  XSETFASTINT (XPROCESS (process)->infd, inchannel);
+  XSETFASTINT (XPROCESS (process)->outfd, outchannel);
   XPROCESS (process)->status = Qrun
 
   /* Delay interrupts until we have a chance to store
@@ -742,7 +742,7 @@ create_process (process, new_argv)
     */
   write_to_vms_process (vs, NO_ECHO, strlen (NO_ECHO));
 
-  XFASTINT (XPROCESS (process)->pid) = pid;
+  XSETFASTINT (XPROCESS (process)->pid, pid);
   sys$setast (1);
 }