File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -137,7 +137,7 @@ _make()
137
137
if [[ ${words[i]} == -@ (C| -directory) ]]; then
138
138
# Expand tilde expansion
139
139
local ret
140
- _comp_dequote " ${words[i + 1]} " &&
140
+ _comp_dequote " ${words[i + 1]- } " &&
141
141
[[ -d ${ret-} ]] &&
142
142
makef_dir=(-C " $ret " )
143
143
break
@@ -150,7 +150,7 @@ _make()
150
150
if [[ ${words[i]} == -@ (f| -? (make)file) ]]; then
151
151
# Expand tilde expansion
152
152
local ret
153
- _comp_dequote " ${words[i + 1]} " &&
153
+ _comp_dequote " ${words[i + 1]- } " &&
154
154
[[ -f ${ret-} ]] &&
155
155
makef=(-f " $ret " )
156
156
break
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ _muttrc()
26
26
_comp_dequote " ${1: 2} " && muttrc=$ret
27
27
else
28
28
shift
29
- [[ $1 ]] && _comp_dequote " $1 " && muttrc=$ret
29
+ [[ ${1-} ]] && _comp_dequote " $1 " && muttrc=$ret
30
30
fi
31
31
break
32
32
fi
You can’t perform that action at this time.
0 commit comments