Mercurial > emacs
diff src/vmsproc.c @ 9323:d428ab51a1bc
(create_process): Don't use XFASTINT as an lvalue.
| author | Karl Heuer <kwzh@gnu.org> |
|---|---|
| date | Tue, 04 Oct 1994 16:16:33 +0000 |
| parents | 40a353de483c |
| children | ac7375e60931 |
line wrap: on
line diff
--- a/src/vmsproc.c Tue Oct 04 16:15:52 1994 +0000 +++ b/src/vmsproc.c Tue Oct 04 16:16:33 1994 +0000 @@ -726,8 +726,8 @@ /* 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 @@ */ write_to_vms_process (vs, NO_ECHO, strlen (NO_ECHO)); - XFASTINT (XPROCESS (process)->pid) = pid; + XSETFASTINT (XPROCESS (process)->pid, pid); sys$setast (1); }
