comparison sources/patches/busybox-1.19.0-less.patch @ 1427:6c85cda8cfce

Fix for less from Denys.
author Rob Landley <rob@landley.net>
date Tue, 16 Aug 2011 13:48:35 -0500
parents
children
comparison
equal deleted inserted replaced
1426:14739f3ae2a5 1427:6c85cda8cfce
1 --- busybox-1.19.0/miscutils/less.c
2 +++ busybox-1.19.0-less/miscutils/less.c
3 @@ -990,7 +990,8 @@ static int64_t less_getch(int pos)
4 */
5 if (key >= 0 && key < ' ' && key != 0x0d && key != 8)
6 goto again;
7 - return key;
8 +
9 + return key64;
10 }
11
12 static char* less_gets(int sz)