From cd220acea05cd06f7037caf715e8d67f9d36c7f4 Mon Sep 17 00:00:00 2001 From: Oliver Kiddle Date: Wed, 19 Feb 2003 18:05:51 +0000 Subject: 18262: fix bug where only first match was added with expand style set to suffix --- ChangeLog | 5 +++++ Completion/Base/Utility/_multi_parts | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 5c3b8c14e..dab2ab518 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2003-02-19 Oliver Kiddle + + * 18262: Completion/Base/Utility/_multi_parts: fix bug where only + the first match was added with expand style set to suffix + 2003-02-18 Oliver Kiddle * 18257: Completion/Unix/Command/_xmlsoft, diff --git a/Completion/Base/Utility/_multi_parts b/Completion/Base/Utility/_multi_parts index 93f2bbd56..615ef79f2 100644 --- a/Completion/Base/Utility/_multi_parts +++ b/Completion/Base/Utility/_multi_parts @@ -114,7 +114,7 @@ while true; do if [[ $#imm -ne 0 && $#matches -eq 1 ]] || zstyle -t ":completion:${curcontext}:" expand suffix; then compadd "$group[@]" "$expl[@]" "$sopts[@]" \ - -M "r:|${sep}=* r:|=* $matcher" - "$pref$matches[1]" + -M "r:|${sep}=* r:|=* $matcher" - $pref$matches else if (( $matches[(I)${tmp1[1]}${sep}*] )); then compadd "$group[@]" "$expl[@]" -p "$pref" -r "$sep" -S "$sep" "$opts[@]" \ -- cgit 1.4.1