about summary refs log tree commit diff
path: root/Completion
diff options
context:
space:
mode:
authorOliver Kiddle <opk@zsh.org>2023-11-22 00:09:57 +0100
committerOliver Kiddle <opk@zsh.org>2023-11-22 00:10:23 +0100
commit7a84713bb7a1527d4ef9bfa8c745d1bfa7da9d59 (patch)
tree9e037817cc073eb2834535a6b2f1e2fd5d4719e8 /Completion
parent6aa15f57fd5bee298c8320dab19d167dac3d46ed (diff)
downloadzsh-7a84713bb7a1527d4ef9bfa8c745d1bfa7da9d59.tar.gz
zsh-7a84713bb7a1527d4ef9bfa8c745d1bfa7da9d59.tar.xz
zsh-7a84713bb7a1527d4ef9bfa8c745d1bfa7da9d59.zip
unposted: fix missing closing brace from 52301
Diffstat (limited to 'Completion')
-rw-r--r--Completion/Unix/Command/_ri2
1 files changed, 1 insertions, 1 deletions
diff --git a/Completion/Unix/Command/_ri b/Completion/Unix/Command/_ri
index 28de7a9a9..fe458e25f 100644
--- a/Completion/Unix/Command/_ri
+++ b/Completion/Unix/Command/_ri
@@ -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)