chiark / gitweb /
*** empty log message ***
[sympathy.git] / src / vt102.c
index 9b316cefb6b94ee920ca96089d738f7f9b257931..5a2ab376edbcd712d6a8d03206d8b977f8d142f2 100644 (file)
@@ -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)