aboutsummaryrefslogtreecommitdiffstats
path: root/src/vt102.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/vt102.c')
-rw-r--r--src/vt102.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/vt102.c b/src/vt102.c
index 9b316ce..5a2ab37 100644
--- a/src/vt102.c
+++ b/src/vt102.c
@@ -10,6 +10,9 @@ static char rcsid[] = "$Id$";
/*
* $Log$
+ * Revision 1.35 2008/02/24 00:42:53 james
+ * *** empty log message ***
+ *
* Revision 1.34 2008/02/23 11:48:37 james
* *** empty log message ***
*
@@ -894,7 +897,7 @@ vt102_restore_state (VT102 * v)
}
void
-vt102_regular_char (Context * c, VT102 * v, char ch)
+vt102_regular_char (Context * c, VT102 * v, int ch)
{
vt102_do_pending_wrap (c);
@@ -1307,10 +1310,12 @@ vt102_parse_char (Context * c, int ch)
#endif
/* Turn anything non-ascii into '?' */
+#if 0
if ((ch != SYM_CHAR_RESET) && (ch != 0xb9) && (ch > 127))
{
ch = '?';
}
+#endif
if (ch == SYM_CHAR_RESET)