commit:     fb0add0e641cf891a11791ff2418e97585c38c92
Author:     Michael Mair-Keimberger <m.mairkeimberger <AT> gmail <DOT> com>
AuthorDate: Sat Sep 19 16:13:18 2020 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sat Sep 19 21:00:41 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fb0add0e

app-shells/bash-completion: remove unused patch(es)

Package-Manager: Portage-3.0.7, Repoman-3.0.1
Signed-off-by: Michael Mair-Keimberger <m.mairkeimberger <AT> gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/17601
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 .../bash-completion-2.1-escape-characters-r1.patch | 27 ----------------------
 1 file changed, 27 deletions(-)

diff --git 
a/app-shells/bash-completion/files/bash-completion-2.1-escape-characters-r1.patch
 
b/app-shells/bash-completion/files/bash-completion-2.1-escape-characters-r1.patch
deleted file mode 100644
index 27a85504bef..00000000000
--- 
a/app-shells/bash-completion/files/bash-completion-2.1-escape-characters-r1.patch
+++ /dev/null
@@ -1,27 +0,0 @@
---- bash-completion-2.1/bash_completion.orig 2014-03-09 17:38:14 +0000
-+++ bash-completion-2.1/bash_completion        2014-03-13 23:26:44 +0000
-@@ -536,13 +536,23 @@
- # @param $2  Name of variable to return result to
- _quote_readline_by_ref()
- {
--    if [[ $1 == \'* ]]; then
-+    if [ -z "$1" ]; then
-+        # avoid quoting if empty
-+        printf -v $2 %s "$1"
-+    elif [[ $1 == \'* ]]; then
-         # Leave out first character
-         printf -v $2 %s "${1:1}"
-+    elif [[ $1 == \~* ]]; then
-+        # avoid escaping first ~
-+        printf -v $2 \~%q "${1:1}"
-     else
-         printf -v $2 %q "$1"
-     fi
- 
-+    # Replace double escaping ( \\ ) by single ( \ )
-+    # This happens always when argument is already escaped at cmdline,
-+    # and passed to this function as e.g.: file\ with\ spaces
-+    [[ ${!2} == *\\* ]] && printf -v $2 %s "${1//\\\\/\\}"
-     # If result becomes quoted like this: $'string', re-evaluate in order to
-     # drop the additional quoting.  See also: http://www.mail-archive.com/
-     # [email protected]/msg01942.html

Reply via email to