diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-04 01:03:19 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-04 01:03:19 +0000 |
commit | f95753ead856ebb24ace89c09c6c3cf927340875 (patch) | |
tree | e28d448a4e0e6f4208251ca52d2f11b0a04fbd2e /debian/patches/15-find-exec.patch | |
parent | Merging upstream version 1:2.12.0. (diff) | |
download | bash-completion-debian/1%2.12.0-1.tar.xz bash-completion-debian/1%2.12.0-1.zip |
Adding debian version 1:2.12.0-1.debian/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.patch | 20 |
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 |