svn commit: trunk/busybox/libbb

pgf at busybox.net pgf at busybox.net
Fri Jan 11 16:12:58 UTC 2008


Author: pgf
Date: 2008-01-11 08:12:57 -0800 (Fri, 11 Jan 2008)
New Revision: 20844

Log:
allow 8-bit characters


Modified:
   trunk/busybox/libbb/lineedit.c


Changeset:
Modified: trunk/busybox/libbb/lineedit.c
===================================================================
--- trunk/busybox/libbb/lineedit.c	2008-01-11 09:14:21 UTC (rev 20843)
+++ trunk/busybox/libbb/lineedit.c	2008-01-11 16:12:57 UTC (rev 20844)
@@ -1768,9 +1768,6 @@
 			if (vi_cmdmode)  /* Don't self-insert */
 				break;
 #endif
-			if (!Isprint(c)) /* Skip non-printable characters */
-				break;
-
 			if (command_len >= (maxsize - 2))        /* Need to leave space for enter */
 				break;
 




More information about the busybox-cvs mailing list