From d1020e63e13f85c7c0f57d43143c28cf759c20c9 Mon Sep 17 00:00:00 2001 From: dana Date: Mon, 29 Jun 2026 19:50:58 -0500 Subject: 54863 + others: completion: compadd -q -> -r -q was not appropriate because a parameter name with no assignment makes no sense in this context. use -r instead also address some previous cases like this that i was responsible for --- Completion/Unix/Command/_php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Completion/Unix/Command/_php') diff --git a/Completion/Unix/Command/_php b/Completion/Unix/Command/_php index 9a8f519b1..3ed3e2705 100644 --- a/Completion/Unix/Command/_php +++ b/Completion/Unix/Command/_php @@ -155,7 +155,7 @@ _php() { if compset -P 1 '*='; then _default && ret=0 else - compset -S '=*' || suf=( -qS '=' ) + compset -S '=*' || suf=( -r= -S= ) _wanted directives expl 'INI directive' \ compadd "$suf[@]" -a directives && ret=0 fi -- cgit v1.3.1