mirror of
git://git.code.sf.net/p/zsh/code
synced 2025-05-21 12:01:54 +02:00
unposted: fix missing closing brace from 52301
This commit is contained in:
parent
6aa15f57fd
commit
7a84713bb7
2 changed files with 3 additions and 1 deletions
|
@ -1,5 +1,7 @@
|
|||
2023-11-22 Oliver Kiddle <opk@zsh.org>
|
||||
|
||||
* unposted: Completion/Unix/Command/_ri: fix missing closing brace
|
||||
|
||||
* 52315: Completion/...: completion options update
|
||||
|
||||
2023-11-18 Bart Schaefer <schaefer@zsh.org>
|
||||
|
|
|
@ -67,7 +67,7 @@ if [[ "$state" = ri-name ]]; then
|
|||
(class-methods)
|
||||
for dir in $ri_dirs[@]; do
|
||||
fnames=( $dir/$class_dir*-c.ri(-.:t) )
|
||||
ri_wants+=( ${${fnames%-c.ri//(#b)%(??)/$(print "\\x$match[1]")} )
|
||||
ri_wants+=( ${${fnames%-c.ri}//(#b)%(??)/$(print "\\x$match[1]")} )
|
||||
done
|
||||
;;
|
||||
(instance-methods)
|
||||
|
|
Loading…
Reference in a new issue