aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/vmsproc.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/vmsproc.c b/src/vmsproc.c
index 5e347bbaa10..48834d328f6 100644
--- a/src/vmsproc.c
+++ b/src/vmsproc.c
@@ -726,8 +726,8 @@ create_process (process, new_argv)
726 /* Record this as an active process, with its channels. 726 /* Record this as an active process, with its channels.
727 As a result, child_setup will close Emacs's side of the pipes. */ 727 As a result, child_setup will close Emacs's side of the pipes. */
728 chan_process[inchannel] = process; 728 chan_process[inchannel] = process;
729 XFASTINT (XPROCESS (process)->infd) = inchannel; 729 XSETFASTINT (XPROCESS (process)->infd, inchannel);
730 XFASTINT (XPROCESS (process)->outfd) = outchannel; 730 XSETFASTINT (XPROCESS (process)->outfd, outchannel);
731 XPROCESS (process)->status = Qrun 731 XPROCESS (process)->status = Qrun
732 732
733 /* Delay interrupts until we have a chance to store 733 /* Delay interrupts until we have a chance to store
@@ -742,7 +742,7 @@ create_process (process, new_argv)
742 */ 742 */
743 write_to_vms_process (vs, NO_ECHO, strlen (NO_ECHO)); 743 write_to_vms_process (vs, NO_ECHO, strlen (NO_ECHO));
744 744
745 XFASTINT (XPROCESS (process)->pid) = pid; 745 XSETFASTINT (XPROCESS (process)->pid, pid);
746 sys$setast (1); 746 sys$setast (1);
747} 747}
748 748