From 09959eb9d6bf81d8413dc3429372f73c2d9bb13f Mon Sep 17 00:00:00 2001 From: "Barton E. Schaefer" Date: Sun, 7 Dec 2014 11:19:12 -0800 Subject: 33912: fix filename default case version-of-od argument list manipulation clobbered the default spec --- Completion/Unix/Command/_od | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'Completion/Unix') diff --git a/Completion/Unix/Command/_od b/Completion/Unix/Command/_od index 36a9b7dae..59775abf6 100644 --- a/Completion/Unix/Command/_od +++ b/Completion/Unix/Command/_od @@ -19,7 +19,6 @@ args=( {-l,-I,-L}'[output decimal longs (-t dL)]' {-o,-B}'[output octal shorts (-t o2)]' '-s[output decimal shorts (-t d2)]' - '*:files:_files' ) if _pick_variant gnu=GNU unix --version; then @@ -49,7 +48,7 @@ else esac fi -_arguments -C -s -S : "$args[@]" && return 0 +_arguments -C -s -S : "$args[@]" '*:files:_files' && return 0 case "$state" in (format) -- cgit 1.4.1