diff options
| author | Karl Heuer | 1994-10-04 16:16:33 +0000 |
|---|---|---|
| committer | Karl Heuer | 1994-10-04 16:16:33 +0000 |
| commit | 64db38486e06cdb992761c49488bba48fe067863 (patch) | |
| tree | fa0d70cf7817d312cf9a2d1f34318cda522db64b /src | |
| parent | 28b2b11600620dc1a84b9be2e79a2b4de0d4e824 (diff) | |
| download | emacs-64db38486e06cdb992761c49488bba48fe067863.tar.gz emacs-64db38486e06cdb992761c49488bba48fe067863.zip | |
(create_process): Don't use XFASTINT as an lvalue.
Diffstat (limited to 'src')
| -rw-r--r-- | src/vmsproc.c | 6 |
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 | ||