diff options
| author | Richard M. Stallman | 1993-12-23 02:00:55 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1993-12-23 02:00:55 +0000 |
| commit | 696810ff0a618e781158efd8c9dfc3cf25b83ddc (patch) | |
| tree | 90b622431959a215aa0b5be7dbfbc842efc1ade3 /src | |
| parent | 0ad477db9592ae28cd1b1e4f737e5357b72ca032 (diff) | |
| download | emacs-696810ff0a618e781158efd8c9dfc3cf25b83ddc.tar.gz emacs-696810ff0a618e781158efd8c9dfc3cf25b83ddc.zip | |
(Fcall_process): Call prepare_menu_bars.
Diffstat (limited to 'src')
| -rw-r--r-- | src/vmsproc.c | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/src/vmsproc.c b/src/vmsproc.c index fff0aec6d60..777ae61876e 100644 --- a/src/vmsproc.c +++ b/src/vmsproc.c | |||
| @@ -573,6 +573,9 @@ if you quit, the process is killed.") | |||
| 573 | return Qnil; | 573 | return Qnil; |
| 574 | } | 574 | } |
| 575 | 575 | ||
| 576 | if (!NILP (display) && INTERACTIVE) | ||
| 577 | prepare_menu_bars (); | ||
| 578 | |||
| 576 | record_unwind_protect (call_process_cleanup, | 579 | record_unwind_protect (call_process_cleanup, |
| 577 | Fcons (make_number (fd[0]), make_number (pid))); | 580 | Fcons (make_number (fd[0]), make_number (pid))); |
| 578 | 581 | ||
| @@ -604,9 +607,10 @@ if you quit, the process is killed.") | |||
| 604 | else | 607 | else |
| 605 | break; | 608 | break; |
| 606 | } | 609 | } |
| 607 | sys$dassgn (inchannel); | 610 | |
| 608 | sys$dassgn (outchannel); | 611 | sys$dassgn (inchannel); |
| 609 | give_back_vms_process_stuff (vs); | 612 | sys$dassgn (outchannel); |
| 613 | give_back_vms_process_stuff (vs); | ||
| 610 | 614 | ||
| 611 | /* Wait for it to terminate, unless it already has. */ | 615 | /* Wait for it to terminate, unless it already has. */ |
| 612 | wait_for_termination (pid); | 616 | wait_for_termination (pid); |