diff options
Diffstat (limited to 'contrib/tcsh/sh.print.c')
-rw-r--r-- | contrib/tcsh/sh.print.c | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/contrib/tcsh/sh.print.c b/contrib/tcsh/sh.print.c index 047ab5d73542c..f2b304c23c03e 100644 --- a/contrib/tcsh/sh.print.c +++ b/contrib/tcsh/sh.print.c @@ -1,4 +1,4 @@ -/* $Header: /src/pub/tcsh/sh.print.c,v 3.18 1999/05/11 13:07:51 christos Exp $ */ +/* $Header: /src/pub/tcsh/sh.print.c,v 3.19 2000/01/14 22:57:28 christos Exp $ */ /* * sh.print.c: Primitive Output routines. */ @@ -36,7 +36,7 @@ */ #include "sh.h" -RCSID("$Id: sh.print.c,v 3.18 1999/05/11 13:07:51 christos Exp $") +RCSID("$Id: sh.print.c,v 3.19 2000/01/14 22:57:28 christos Exp $") #include "ed.h" @@ -259,6 +259,12 @@ flush() #ifdef EBADF case EBADF: #endif +#ifdef ESTALE + /* + * Lost our file descriptor, exit (IRIS4D) + */ + case ESTALE: +#endif /* * Over our quota, writing the history file */ |