mirror of
git://git.code.sf.net/p/zsh/code
synced 2025-09-03 10:21:46 +02:00
49147: fix completion of linux kernel modules
This commit is contained in:
parent
9b3a292410
commit
d9e5ef0204
2 changed files with 6 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
|||
2021-07-19 Eric Cook <llua@gmx.com>
|
||||
|
||||
* 49147: Completion/Linux/Command/_modutils: fix the completion
|
||||
linux kernel modules
|
||||
|
||||
2021-07-19 Jun-ichi Takimoto <takimoto-j@kba.biglobe.ne.jp>
|
||||
|
||||
* 49166: Src/subst.c, Test/D04parameter.ztst: fix coredump in
|
||||
|
|
|
@ -132,7 +132,7 @@ _modutils() {
|
|||
_store_cache modules-$kver modules modaliases
|
||||
fi
|
||||
|
||||
if (( ${+opt_args[(k)(-R|--resolve-alias)]} )); then
|
||||
if [[ -v opt_args[(i)(-R|--resolve-alias)] ]]; then
|
||||
_tags module-aliases
|
||||
else
|
||||
_tags files modules module-aliases
|
||||
|
|
Loading…
Reference in a new issue