diff options
author | Lars Wendler <polynomial-c@gentoo.org> | 2016-11-18 10:02:52 +0100 |
---|---|---|
committer | Lars Wendler <polynomial-c@gentoo.org> | 2016-11-18 10:03:06 +0100 |
commit | 0b8bb23ef469bbbf88a695582219c0a79fa19ba9 (patch) | |
tree | 98dd74b50fc68b2fe95fff3c2282caf4713bf7b7 /sys-libs/readline/files | |
parent | dev-perl/Devel-Symdump: Bump to 2.170.0 (diff) | |
download | gentoo-0b8bb23ef469bbbf88a695582219c0a79fa19ba9.tar.gz gentoo-0b8bb23ef469bbbf88a695582219c0a79fa19ba9.tar.bz2 gentoo-0b8bb23ef469bbbf88a695582219c0a79fa19ba9.zip |
sys-libs/readline: Bump to version 7.0_p1. Removed old.
We already had the issue fixed in 7.0-r1 that 7.0_p1 is fixing but now we have
the official patch.
Package-Manager: portage-2.3.2
Diffstat (limited to 'sys-libs/readline/files')
-rw-r--r-- | sys-libs/readline/files/readline-7.0-history-alloclist.patch | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/sys-libs/readline/files/readline-7.0-history-alloclist.patch b/sys-libs/readline/files/readline-7.0-history-alloclist.patch deleted file mode 100644 index 73faa60fcd2d..000000000000 --- a/sys-libs/readline/files/readline-7.0-history-alloclist.patch +++ /dev/null @@ -1,29 +0,0 @@ -https://bugs.gentoo.org/597006 -https://lists.gnu.org/archive/html/bug-bash/2016-10/msg00010.html - -*** ../bash-4.4/lib/readline/history.c 2015-12-28 13:50:31.000000000 -0500 ---- lib/readline/history.c 2016-09-30 14:28:40.000000000 -0400 -*************** -*** 58,61 **** ---- 58,63 ---- - #define DEFAULT_HISTORY_INITIAL_SIZE 502 - -+ #define MAX_HISTORY_INITIAL_SIZE 8192 -+ - /* The number of slots to increase the_history by. */ - #define DEFAULT_HISTORY_GROW_SIZE 50 -*************** -*** 308,312 **** - { - if (history_stifled && history_max_entries > 0) -! history_size = history_max_entries + 2; - else - history_size = DEFAULT_HISTORY_INITIAL_SIZE; ---- 310,316 ---- - { - if (history_stifled && history_max_entries > 0) -! history_size = (history_max_entries > MAX_HISTORY_INITIAL_SIZE) -! ? MAX_HISTORY_INITIAL_SIZE -! : history_max_entries + 2; - else - history_size = DEFAULT_HISTORY_INITIAL_SIZE; |