aboutsummaryrefslogtreecommitdiffstats
path: root/src/ansi.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/ansi.c')
-rw-r--r--src/ansi.c9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/ansi.c b/src/ansi.c
index a70a51d..593b367 100644
--- a/src/ansi.c
+++ b/src/ansi.c
@@ -10,6 +10,9 @@ static char rcsid[] = "$Id$";
/*
* $Log$
+ * Revision 1.50 2008/03/07 13:16:02 james
+ * *** empty log message ***
+ *
* Revision 1.49 2008/03/07 12:37:04 james
* *** empty log message ***
*
@@ -515,9 +518,7 @@ ansi_resize_check (ANSI * a, CRT_Pos * size)
if (size)
a->crt.size = *size;
- // FIXME: -- echos back crap?
- // a->terminal->xmit (a->terminal, "\033[c", 3);
-
+ // a->terminal->xmit (a->terminal, "\033c", 3);
// maybe - issue 132 column command if we're 132?
ansi_cls (a);
@@ -947,7 +948,7 @@ ansi_new_from_terminal (TTY * t, int utf8)
{
ANSI *ret;
- ret = malloc (sizeof (ANSI));
+ ret = xmalloc (sizeof (ANSI));
memset (ret, 0, sizeof (ANSI));
ret->terminal = t;