diff options
author | Peter Korsgaard <jacmet@sunsite.dk> | 2008-03-26 21:49:58 +0000 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2008-03-26 21:49:58 +0000 |
commit | 49a411ea7374a4f2bb5d8ed69b99d2cd5a6fee2e (patch) | |
tree | 649aa4b2f7961bd72d16b1b4bf74e38ca806c523 /package/busybox/busybox-1.8.2-vi.patch | |
parent | 968402ca279610b8d2472b85ad3e839fe1bf48a6 (diff) | |
download | buildroot-novena-49a411ea7374a4f2bb5d8ed69b99d2cd5a6fee2e.tar.gz buildroot-novena-49a411ea7374a4f2bb5d8ed69b99d2cd5a6fee2e.zip |
busybox: bump 1.7.x and 1.8.x versions
Diffstat (limited to 'package/busybox/busybox-1.8.2-vi.patch')
-rw-r--r-- | package/busybox/busybox-1.8.2-vi.patch | 40 |
1 files changed, 0 insertions, 40 deletions
diff --git a/package/busybox/busybox-1.8.2-vi.patch b/package/busybox/busybox-1.8.2-vi.patch deleted file mode 100644 index cb588ac65..000000000 --- a/package/busybox/busybox-1.8.2-vi.patch +++ /dev/null @@ -1,40 +0,0 @@ -diff -urN busybox-1.8.2/editors/vi.c busybox-1.8.2-vi/editors/vi.c ---- busybox-1.8.2/editors/vi.c 2007-11-10 01:40:54.000000000 +0000 -+++ busybox-1.8.2-vi/editors/vi.c 2007-12-10 16:26:01.000000000 +0000 -@@ -184,6 +184,7 @@ - #if ENABLE_FEATURE_VI_COLON - char *initial_cmds[3]; // currently 2 entries, NULL terminated - #endif -+ char readbuffer[MAX_LINELEN]; - }; - #define G (*ptr_to_globals) - #define text (G.text ) -@@ -200,6 +201,10 @@ - #define term_orig (G.term_orig ) - #define term_vi (G.term_vi ) - #define initial_cmds (G.initial_cmds ) -+#define readbuffer (G.readbuffer ) -+#define INIT_G() do { \ -+ PTR_TO_GLOBALS = xzalloc(sizeof(G)); \ -+} while (0) - - static int init_text_buffer(char *); // init from file or create new - static void edit_file(char *); // edit one file -@@ -321,7 +326,7 @@ - my_pid = getpid(); - #endif - -- PTR_TO_GLOBALS = xzalloc(sizeof(G)); -+ INIT_G(); - - #if ENABLE_FEATURE_VI_CRASHME - srand((long) my_pid); -@@ -2142,8 +2147,6 @@ - return safe_poll(pfd, 1, hund*10) > 0; - } - --#define readbuffer bb_common_bufsiz1 -- - static int readed_for_parse; - - //----- IO Routines -------------------------------------------- |