From f0a716f48414c3dc6cc454b3fb09ead70f1e478d Mon Sep 17 00:00:00 2001 From: Nicholas Marriott Date: Wed, 29 Apr 2009 17:50:52 +0000 Subject: Use a u_char so top-bit-set update the cursor as well. --- tty.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tty.c') diff --git a/tty.c b/tty.c index 92f9e672..3e72f585 100644 --- a/tty.c +++ b/tty.c @@ -1,4 +1,4 @@ -/* $Id: tty.c,v 1.93 2009-04-29 17:06:45 nicm Exp $ */ +/* $Id: tty.c,v 1.94 2009-04-29 17:50:52 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott @@ -306,7 +306,7 @@ tty_puts(struct tty *tty, const char *s) } void -tty_putc(struct tty *tty, char ch) +tty_putc(struct tty *tty, u_char ch) { u_int sx; -- cgit