summaryrefslogtreecommitdiffstats
path: root/tty.c
diff options
context:
space:
mode:
authorNicholas Marriott <nicholas.marriott@gmail.com>2008-05-31 09:34:36 +0000
committerNicholas Marriott <nicholas.marriott@gmail.com>2008-05-31 09:34:36 +0000
commit8f33e8494e683f8a87024854d95d02fcba3a725d (patch)
tree139389a08e1d94528e001190ef4afedcd396514d /tty.c
parent0dbbd777b11ad27c3a227f48cdaf66ea55c8de3b (diff)
Ugh, this should be backspace.
Diffstat (limited to 'tty.c')
-rw-r--r--tty.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tty.c b/tty.c
index 81717ba5..add7e844 100644
--- a/tty.c
+++ b/tty.c
@@ -1,4 +1,4 @@
-/* $Id: tty.c,v 1.19 2008-05-10 12:50:25 nicm Exp $ */
+/* $Id: tty.c,v 1.20 2008-05-31 09:34:36 nicm Exp $ */
/*
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
@@ -478,7 +478,7 @@ tty_vwrite(struct tty *tty, unused struct screen *s, int cmd, va_list ap)
tty_puts(tty, delete_character);
} else {
while (ua-- > 0)
- tty_putc(tty, '\008');
+ tty_putc(tty, '\010');
}
break;
case TTY_CURSORON: