aboutsummaryrefslogtreecommitdiffstats
path: root/src/vmsproc.c
diff options
context:
space:
mode:
authorJim Blandy1992-01-13 21:48:03 +0000
committerJim Blandy1992-01-13 21:48:03 +0000
commitd427b66a664c0e1ffc818dfa5b87b45b4857d2ae (patch)
treea3255be5cf521ab9c44b9fdfd06a0466274be421 /src/vmsproc.c
parentb2c9579f172da05112f29b664de6d8da98c1e813 (diff)
downloademacs-d427b66a664c0e1ffc818dfa5b87b45b4857d2ae.tar.gz
emacs-d427b66a664c0e1ffc818dfa5b87b45b4857d2ae.zip
entered into RCS
Diffstat (limited to 'src/vmsproc.c')
-rw-r--r--src/vmsproc.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/vmsproc.c b/src/vmsproc.c
index ec9678f78a4..fff0aec6d60 100644
--- a/src/vmsproc.c
+++ b/src/vmsproc.c
@@ -437,7 +437,7 @@ if you quit, the process is killed.")
437 437
438 CHECK_STRING (args[0], 0); 438 CHECK_STRING (args[0], 0);
439 439
440 if (nargs <= 1 || NULL (args[1])) 440 if (nargs <= 1 || NILP (args[1]))
441 args[1] = build_string ("NLA0:"); 441 args[1] = build_string ("NLA0:");
442 else 442 else
443 args[1] = Fexpand_file_name (args[1], current_buffer->directory); 443 args[1] = Fexpand_file_name (args[1], current_buffer->directory);
@@ -589,12 +589,12 @@ if you quit, the process is killed.")
589 if (vs->iosb[0] & 1) 589 if (vs->iosb[0] & 1)
590 { 590 {
591 immediate_quit = 0; 591 immediate_quit = 0;
592 if (!NULL (buffer)) 592 if (!NILP (buffer))
593 { 593 {
594 vs->iosb[1] = clean_vms_buffer (vs->inputBuffer, vs->iosb[1]); 594 vs->iosb[1] = clean_vms_buffer (vs->inputBuffer, vs->iosb[1]);
595 InsCStr (vs->inputBuffer, vs->iosb[1]); 595 InsCStr (vs->inputBuffer, vs->iosb[1]);
596 } 596 }
597 if (!NULL (display) && INTERACTIVE) 597 if (!NILP (display) && INTERACTIVE)
598 redisplay_preserve_echo_area (); 598 redisplay_preserve_echo_area ();
599 immediate_quit = 1; 599 immediate_quit = 1;
600 QUIT; 600 QUIT;