summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLars Wendler <polynomial-c@gentoo.org>2019-09-02 09:54:22 +0200
committerLars Wendler <polynomial-c@gentoo.org>2019-09-02 09:54:22 +0200
commit2b69ac2f35d40618e587296b7bf379c03be6d06b (patch)
tree74f07800fd3bd1b62ff8063ace3bb084eef8f69a /app-shells/bash/files
parentapp-shells/bash: Bump to version 5.0_p11 (diff)
downloadgentoo-2b69ac2f35d40618e587296b7bf379c03be6d06b.tar.gz
gentoo-2b69ac2f35d40618e587296b7bf379c03be6d06b.tar.bz2
gentoo-2b69ac2f35d40618e587296b7bf379c03be6d06b.zip
app-shells/bash: Removed old
Package-Manager: Portage-2.3.75, Repoman-2.3.17 Signed-off-by: Lars Wendler <polynomial-c@gentoo.org>
Diffstat (limited to 'app-shells/bash/files')
-rw-r--r--app-shells/bash/files/bash-5.0-history-zero-length.patch34
1 files changed, 0 insertions, 34 deletions
diff --git a/app-shells/bash/files/bash-5.0-history-zero-length.patch b/app-shells/bash/files/bash-5.0-history-zero-length.patch
deleted file mode 100644
index 981bbfb06259..000000000000
--- a/app-shells/bash/files/bash-5.0-history-zero-length.patch
+++ /dev/null
@@ -1,34 +0,0 @@
-*** ../bash-5.0-patched/bashhist.c 2018-07-05 22:41:14.000000000 -0400
---- bashhist.c 2019-02-20 16:20:04.000000000 -0500
-***************
-*** 561,573 ****
- if (!history_expansion_inhibited && history_expansion && history_expansion_p (line))
- {
- /* If we are expanding the second or later line of a multi-line
- command, decrease history_length so references to history expansions
- in these lines refer to the previous history entry and not the
- current command. */
- if (history_length > 0 && command_oriented_history && current_command_first_line_saved && current_command_line_count > 1)
- history_length--;
- expanded = history_expand (line, &history_value);
- if (history_length >= 0 && command_oriented_history && current_command_first_line_saved && current_command_line_count > 1)
-! history_length++;
-
- if (expanded)
---- 561,576 ----
- if (!history_expansion_inhibited && history_expansion && history_expansion_p (line))
- {
-+ int old_len;
-+
- /* If we are expanding the second or later line of a multi-line
- command, decrease history_length so references to history expansions
- in these lines refer to the previous history entry and not the
- current command. */
-+ old_len = history_length;
- if (history_length > 0 && command_oriented_history && current_command_first_line_saved && current_command_line_count > 1)
- history_length--;
- expanded = history_expand (line, &history_value);
- if (history_length >= 0 && command_oriented_history && current_command_first_line_saved && current_command_line_count > 1)
-! history_length = old_len;
-
- if (expanded)