add a continue message.
This commit is contained in:
parent
24bcb8e38a
commit
0dea4d56e9
@ -1,4 +1,4 @@
|
|||||||
/* $NetBSD: tty.c,v 1.21 2006/09/18 19:46:21 christos Exp $ */
|
/* $NetBSD: tty.c,v 1.22 2006/09/26 23:33:23 christos Exp $ */
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Copyright (c) 1980, 1993
|
* Copyright (c) 1980, 1993
|
||||||
@ -34,7 +34,7 @@
|
|||||||
#if 0
|
#if 0
|
||||||
static char sccsid[] = "@(#)tty.c 8.2 (Berkeley) 6/6/93";
|
static char sccsid[] = "@(#)tty.c 8.2 (Berkeley) 6/6/93";
|
||||||
#else
|
#else
|
||||||
__RCSID("$NetBSD: tty.c,v 1.21 2006/09/18 19:46:21 christos Exp $");
|
__RCSID("$NetBSD: tty.c,v 1.22 2006/09/26 23:33:23 christos Exp $");
|
||||||
#endif
|
#endif
|
||||||
#endif /* not lint */
|
#endif /* not lint */
|
||||||
|
|
||||||
@ -117,8 +117,12 @@ grabh(struct header *hp, int gflags)
|
|||||||
warn("TIOCEXT: off");
|
warn("TIOCEXT: off");
|
||||||
}
|
}
|
||||||
# endif /* TIOCEXT */
|
# endif /* TIOCEXT */
|
||||||
if (setjmp(intjmp))
|
if (setjmp(intjmp)) {
|
||||||
|
#ifdef USE_READLINE
|
||||||
|
(void)printf("\n(continue)\n");
|
||||||
|
#endif /* USE_READLINE */
|
||||||
goto out;
|
goto out;
|
||||||
|
}
|
||||||
saveint = signal(SIGINT, ttyint);
|
saveint = signal(SIGINT, ttyint);
|
||||||
#endif
|
#endif
|
||||||
if (gflags & GTO) {
|
if (gflags & GTO) {
|
||||||
|
Loading…
Reference in New Issue
Block a user