aboutsummaryrefslogtreecommitdiffstats
path: root/src/sysdep.c
diff options
context:
space:
mode:
authorJim Blandy1992-05-18 08:14:41 +0000
committerJim Blandy1992-05-18 08:14:41 +0000
commitffd56f97cf56501f7a6981c184192e9043e4eafd (patch)
treed463f4585c85fa76b33d3663271bbb4126d7b116 /src/sysdep.c
parent502ddf238f0ed280a301426804b2ed16ec1c49cc (diff)
downloademacs-ffd56f97cf56501f7a6981c184192e9043e4eafd.tar.gz
emacs-ffd56f97cf56501f7a6981c184192e9043e4eafd.zip
*** empty log message ***
Diffstat (limited to 'src/sysdep.c')
-rw-r--r--src/sysdep.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/sysdep.c b/src/sysdep.c
index 5f6090a2460..51c5bd920a7 100644
--- a/src/sysdep.c
+++ b/src/sysdep.c
@@ -479,7 +479,7 @@ child_setup_tty (out)
479setpgrp_of_tty (pid) 479setpgrp_of_tty (pid)
480 int pid; 480 int pid;
481{ 481{
482 EMACS_SET_TTY_PGRP (input_fd, pid); 482 EMACS_SET_TTY_PGRP (input_fd, &pid);
483} 483}
484 484
485/* Record a signal code and the handler for it. */ 485/* Record a signal code and the handler for it. */
@@ -1199,7 +1199,7 @@ kbd_input_ast ()
1199{ 1199{
1200 register int c = -1; 1200 register int c = -1;
1201 int old_errno = errno; 1201 int old_errno = errno;
1202 extern int *input_available_clear_word; 1202 extern EMACS_TIME *input_available_clear_time;
1203 1203
1204 if (waiting_for_ast) 1204 if (waiting_for_ast)
1205 SYS$SETEF (input_ef); 1205 SYS$SETEF (input_ef);
@@ -1236,8 +1236,8 @@ kbd_input_ast ()
1236 kbd_buffer_store_event (&e); 1236 kbd_buffer_store_event (&e);
1237 } 1237 }
1238 1238
1239 if (input_available_clear_word) 1239 if (input_available_clear_time)
1240 *input_available_clear_word = 0; 1240 EMACS_SET_SECS_USECS (*input_available_clear_time, 0, 0);
1241 errno = old_errno; 1241 errno = old_errno;
1242} 1242}
1243 1243