summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2010-01-09 03:48:36 +0000
committerMike Frysinger <vapier@gentoo.org>2010-01-09 03:48:36 +0000
commitb43dfdb3c894eba5d5df6b18331514e27997c07b (patch)
tree1c59a1035d00f494891150a22faba3bfd251334f /app-shells/bash/files
parentRemove unneeded sed; add prefix keywords (diff)
downloadgentoo-2-b43dfdb3c894eba5d5df6b18331514e27997c07b.tar.gz
gentoo-2-b43dfdb3c894eba5d5df6b18331514e27997c07b.tar.bz2
gentoo-2-b43dfdb3c894eba5d5df6b18331514e27997c07b.zip
old
Diffstat (limited to 'app-shells/bash/files')
-rw-r--r--app-shells/bash/files/bash-3.2-redisplay-cursor.patch20
1 files changed, 0 insertions, 20 deletions
diff --git a/app-shells/bash/files/bash-3.2-redisplay-cursor.patch b/app-shells/bash/files/bash-3.2-redisplay-cursor.patch
deleted file mode 100644
index b9713bc619ed..000000000000
--- a/app-shells/bash/files/bash-3.2-redisplay-cursor.patch
+++ /dev/null
@@ -1,20 +0,0 @@
-http://bugs.gentoo.org/155369
-
-*** ../bash-3.2.10/lib/readline/display.c Fri Jan 19 13:34:50 2007
---- lib/readline/display.c Sat Mar 10 17:25:44 2007
-***************
-*** 1733,1737 ****
- {
- dpos = _rl_col_width (data, 0, new);
-! if (dpos > prompt_last_invisible) /* XXX - don't use woff here */
- {
- dpos -= woff;
---- 1765,1772 ----
- {
- dpos = _rl_col_width (data, 0, new);
-! /* Use NEW when comparing against the last invisible character in the
-! prompt string, since they're both buffer indices and DPOS is a
-! desired display position. */
-! if (new > prompt_last_invisible) /* XXX - don't use woff here */
- {
- dpos -= woff;