summaryrefslogtreecommitdiff
path: root/package/busybox/busybox-1.9.1-lineedit.patch
diff options
context:
space:
mode:
authorPeter Korsgaard <jacmet@sunsite.dk>2008-03-21 10:14:15 +0000
committerPeter Korsgaard <jacmet@sunsite.dk>2008-03-21 10:14:15 +0000
commit7c54beb870cc7fb50c8a77689dab589d7cb90fb8 (patch)
tree4f44d1ab546d5e5fde108ba69a3a60f4e057e3b5 /package/busybox/busybox-1.9.1-lineedit.patch
parent374f8383b979761ff6eb3de9e6302efb21439a64 (diff)
busybox: bump version (1.9.2)
Diffstat (limited to 'package/busybox/busybox-1.9.1-lineedit.patch')
-rw-r--r--package/busybox/busybox-1.9.1-lineedit.patch19
1 files changed, 0 insertions, 19 deletions
diff --git a/package/busybox/busybox-1.9.1-lineedit.patch b/package/busybox/busybox-1.9.1-lineedit.patch
deleted file mode 100644
index 6f42a8e3b..000000000
--- a/package/busybox/busybox-1.9.1-lineedit.patch
+++ /dev/null
@@ -1,19 +0,0 @@
---- busybox-1.9.1/libbb/lineedit.c Tue Feb 12 17:10:25 2008
-+++ busybox-1.9.1-lineedit/libbb/lineedit.c Mon Feb 18 23:26:54 2008
-@@ -246,7 +246,15 @@
- if (cmdedit_x >= num) {
- cmdedit_x -= num;
- if (num <= 4) {
-- printf("\b\b\b\b" + (4-num));
-+ /* This is longer by 5 bytes on x86.
-+ * Also gets mysteriously
-+ * miscompiled for some ARM users.
-+ * printf(("\b\b\b\b" + 4) - num);
-+ * return;
-+ */
-+ do {
-+ bb_putchar('\b');
-+ } while (--num);
- return;
- }
- printf("\033[%uD", num);