From de24fbb35ce763c5e905c726733a561f5fa34724 Mon Sep 17 00:00:00 2001 From: Nicholas Marriott Date: Fri, 19 Oct 2007 10:21:36 +0000 Subject: Add a bell-action option. --- input.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'input.c') diff --git a/input.c b/input.c index c0619299..6d43c760 100644 --- a/input.c +++ b/input.c @@ -1,4 +1,4 @@ -/* $Id: input.c,v 1.23 2007-10-12 11:44:30 nicm Exp $ */ +/* $Id: input.c,v 1.24 2007-10-19 10:21:33 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott @@ -390,7 +390,7 @@ input_handle_c0_control(u_char ch, struct input_ctx *ictx) break; case '\007': /* BELL */ ictx->flags |= INPUT_BELL; - break; + return; case '\010': /* BS */ if (ictx->s->cx > 0) ictx->s->cx--; -- cgit v1.2.3