diff options
author | ache <ache@FreeBSD.org> | 1997-09-15 00:42:04 +0000 |
---|---|---|
committer | ache <ache@FreeBSD.org> | 1997-09-15 00:42:04 +0000 |
commit | 2b00c45114fc897afa8e0e7e974b0da6ac989e72 (patch) | |
tree | e85d0613cfe0962f70d66cd121e5fd01cb351552 /libexec/comsat | |
parent | c823c67692a1df5afe723631c9daa9aaaff908c8 (diff) | |
download | FreeBSD-src-2b00c45114fc897afa8e0e7e974b0da6ac989e72.zip FreeBSD-src-2b00c45114fc897afa8e0e7e974b0da6ac989e72.tar.gz |
Allow backspace too
Diffstat (limited to 'libexec/comsat')
-rw-r--r-- | libexec/comsat/comsat.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libexec/comsat/comsat.c b/libexec/comsat/comsat.c index f37796c..18deb62 100644 --- a/libexec/comsat/comsat.c +++ b/libexec/comsat/comsat.c @@ -30,7 +30,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: comsat.c,v 1.8 1997/02/22 14:21:23 peter Exp $ + * $Id: comsat.c,v 1.9 1997/09/15 00:27:49 ache Exp $ */ #ifndef lint @@ -296,7 +296,7 @@ jkfprintf(tp, user, file, offset) */ if (((ch & 0x80) && ch < 0xA0) || (!(ch & 0x80) && !isprint(ch) && - !isspace(ch) && ch != '\007') + !isspace(ch) && ch != '\a' && ch != '\b') ) { if (ch & 0x80) { ch &= ~0x80; |