summaryrefslogtreecommitdiffstats
path: root/debian/patches/15-find-exec.patch
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-05-04 01:03:19 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-05-04 01:03:19 +0000
commit98634323a37a3056ba35a14ea519c80d8727b0e6 (patch)
tree50d10992ee45045491fd10cb24064fcfdabd82fc /debian/patches/15-find-exec.patch
parentMerging upstream version 1:2.12.0. (diff)
downloadbash-completion-98634323a37a3056ba35a14ea519c80d8727b0e6.tar.xz
bash-completion-98634323a37a3056ba35a14ea519c80d8727b0e6.zip
Merging debian version 1:2.12.0-1.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'debian/patches/15-find-exec.patch')
-rw-r--r--debian/patches/15-find-exec.patch20
1 files changed, 0 insertions, 20 deletions
diff --git a/debian/patches/15-find-exec.patch b/debian/patches/15-find-exec.patch
deleted file mode 100644
index fcb963e..0000000
--- a/debian/patches/15-find-exec.patch
+++ /dev/null
@@ -1,20 +0,0 @@
-commit f1ddf810e4ee6693acb9fab1be1794586aa111a0
-Author: Ville Skyttä <ville.skytta@iki.fi>
-Date: Sat Mar 20 10:41:04 2021 +0200
-
- fix(find): don't look for -exec etc command if completing before it
-
- Closes https://github.com/scop/bash-completion/issues/509
-
-diff --git a/completions/find b/completions/find
-index 64121eda..f18c7d7e 100644
---- a/completions/find
-+++ b/completions/find
-@@ -10,6 +10,7 @@ _find()
- local i
- for i in ${!words[*]}; do
- if [[ ${words[i]} == -@(exec|ok)?(dir) ]]; then
-+ ((cword > i)) || break
- _command_offset $((i + 1))
- return
- fi