From 7a84713bb7a1527d4ef9bfa8c745d1bfa7da9d59 Mon Sep 17 00:00:00 2001 From: Oliver Kiddle <opk@zsh.org> Date: Wed, 22 Nov 2023 00:09:57 +0100 Subject: [PATCH] unposted: fix missing closing brace from 52301 --- ChangeLog | 2 ++ Completion/Unix/Command/_ri | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 9132ef9e8..8932d60d9 100644 --- a/ChangeLog +++ b/ChangeLog @@ -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> 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)