aboutsummaryrefslogtreecommitdiff
path: root/bash
diff options
context:
space:
mode:
Diffstat (limited to 'bash')
-rw-r--r--bash/bashrc.d/pass.bash4
1 files changed, 0 insertions, 4 deletions
diff --git a/bash/bashrc.d/pass.bash b/bash/bashrc.d/pass.bash
index 91d2d538..348978ca 100644
--- a/bash/bashrc.d/pass.bash
+++ b/bash/bashrc.d/pass.bash
@@ -15,11 +15,7 @@ _pass()
# doesn't seem to do this properly with a null delimiter)
local entry
while IFS= read -d '' -r entry ; do
-
- # We have to use printf %q here to quote the entry, as it may include
- # spaces or newlines, just like any filename
COMPREPLY=("${COMPREPLY[@]}" "$entry")
-
done < <(
# Set shell options to expand globs the way we expect