summaryrefslogtreecommitdiff
path: root/bash/bash-2.05b/bash205b-006.patch
diff options
context:
space:
mode:
authorChris Larson <clarson@kergoth.com>2004-12-09 09:47:41 +0000
committerChris Larson <clarson@kergoth.com>2004-12-09 09:47:41 +0000
commit2c5b8ec6d95cf68650265941530e5ce38c8dd6d9 (patch)
treebf879bea7ef8517ba8c3d1286ef300401d3d484c /bash/bash-2.05b/bash205b-006.patch
parent101e2f1623def0a355d20aacb8bd93810703e834 (diff)
Merge oe-devel@oe-devel.bkbits.net:openembedded
into hyperion.kergoth.com:/home/kergoth/code/openembedded 2004/12/09 03:39:39-06:00 kergoth.com!kergoth Break people's builds again.. this time moving the packages into a packages/ subdir to clean things up a bit. BKrev: 41b81f3dvlp3rU7_8MUXLcI8LDdDoA
Diffstat (limited to 'bash/bash-2.05b/bash205b-006.patch')
-rw-r--r--bash/bash-2.05b/bash205b-006.patch90
1 files changed, 0 insertions, 90 deletions
diff --git a/bash/bash-2.05b/bash205b-006.patch b/bash/bash-2.05b/bash205b-006.patch
deleted file mode 100644
index 2642f5173f..0000000000
--- a/bash/bash-2.05b/bash205b-006.patch
+++ /dev/null
@@ -1,90 +0,0 @@
-*** ../bash-2.05b/lib/readline/display.c Tue Jun 4 10:54:47 2002
---- lib/readline/display.c Fri Sep 13 16:22:57 2002
-***************
-*** 71,75 ****
-
- #if defined (HANDLE_MULTIBYTE)
-! static int _rl_col_width PARAMS((char *, int, int));
- static int *_rl_wrapped_line;
- #else
---- 71,75 ----
-
- #if defined (HANDLE_MULTIBYTE)
-! static int _rl_col_width PARAMS((const char *, int, int));
- static int *_rl_wrapped_line;
- #else
-***************
-*** 1349,1355 ****
- _rl_output_some_chars (nfd + lendiff, temp - lendiff);
- #if 0
-- _rl_last_c_pos += _rl_col_width (nfd+lendiff, 0, temp-lendiff) - col_lendiff;
-- #else
- _rl_last_c_pos += _rl_col_width (nfd+lendiff, 0, temp-col_lendiff);
- #endif
- }
---- 1349,1355 ----
- _rl_output_some_chars (nfd + lendiff, temp - lendiff);
- #if 0
- _rl_last_c_pos += _rl_col_width (nfd+lendiff, 0, temp-col_lendiff);
-+ #else
-+ _rl_last_c_pos += _rl_col_width (nfd+lendiff, 0, temp-lendiff);
- #endif
- }
-***************
-*** 1511,1516 ****
- /* If we have multibyte characters, NEW is indexed by the buffer point in
- a multibyte string, but _rl_last_c_pos is the display position. In
-! this case, NEW's display position is not obvious. */
-! if ((MB_CUR_MAX == 1 || rl_byte_oriented ) && _rl_last_c_pos == new) return;
- #else
- if (_rl_last_c_pos == new) return;
---- 1511,1523 ----
- /* If we have multibyte characters, NEW is indexed by the buffer point in
- a multibyte string, but _rl_last_c_pos is the display position. In
-! this case, NEW's display position is not obvious and must be
-! calculated. */
-! if (MB_CUR_MAX == 1 || rl_byte_oriented)
-! {
-! if (_rl_last_c_pos == new)
-! return;
-! }
-! else if (_rl_last_c_pos == _rl_col_width (data, 0, new))
-! return;
- #else
- if (_rl_last_c_pos == new) return;
-***************
-*** 1595,1603 ****
- {
- if (MB_CUR_MAX > 1 && rl_byte_oriented == 0)
-! {
-! tputs (_rl_term_cr, 1, _rl_output_character_function);
-! for (i = 0; i < new; i++)
-! putc (data[i], rl_outstream);
-! }
- else
- _rl_backspace (_rl_last_c_pos - new);
---- 1602,1606 ----
- {
- if (MB_CUR_MAX > 1 && rl_byte_oriented == 0)
-! _rl_backspace (_rl_last_c_pos - _rl_col_width (data, 0, new));
- else
- _rl_backspace (_rl_last_c_pos - new);
-***************
-*** 2118,2122 ****
- static int
- _rl_col_width (str, start, end)
-! char *str;
- int start, end;
- {
---- 2121,2125 ----
- static int
- _rl_col_width (str, start, end)
-! const char *str;
- int start, end;
- {
-***************
-*** 2194,2196 ****
- }
- #endif /* HANDLE_MULTIBYTE */
--
---- 2197,2198 ----