helpers: Fix broken compoure references after vendor change

pull/1856/head
Noah Gorny 2021-03-21 21:52:47 +02:00
parent 6f02b8d194
commit 7b5f758eba
1 changed files with 3 additions and 3 deletions

View File

@ -742,14 +742,14 @@ _help-plugins()
printf '%s' 'please wait, building help...'
typeset grouplist=$(mktemp -t grouplist.XXXXXX)
typeset func
for func in $(typeset_functions)
for func in $(_typeset_functions)
do
typeset group="$(typeset -f $func | metafor group)"
if [ -z "$group" ]; then
group='misc'
fi
typeset about="$(typeset -f $func | metafor about)"
letterpress "$about" $func >> $grouplist.$group
_letterpress "$about" $func >> $grouplist.$group
echo $grouplist.$group >> $grouplist
done
# clear progress message
@ -788,7 +788,7 @@ all_groups ()
typeset func
typeset file=$(mktemp -t composure.XXXX)
for func in $(typeset_functions)
for func in $(_typeset_functions)
do
typeset -f $func | metafor group >> $file
done