Skip to content

Commit 7b5f758

Browse files
author
Noah Gorny
committed
helpers: Fix broken compoure references after vendor change
1 parent 6f02b8d commit 7b5f758

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

lib/helpers.bash

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -742,14 +742,14 @@ _help-plugins()
742742
printf '%s' 'please wait, building help...'
743743
typeset grouplist=$(mktemp -t grouplist.XXXXXX)
744744
typeset func
745-
for func in $(typeset_functions)
745+
for func in $(_typeset_functions)
746746
do
747747
typeset group="$(typeset -f $func | metafor group)"
748748
if [ -z "$group" ]; then
749749
group='misc'
750750
fi
751751
typeset about="$(typeset -f $func | metafor about)"
752-
letterpress "$about" $func >> $grouplist.$group
752+
_letterpress "$about" $func >> $grouplist.$group
753753
echo $grouplist.$group >> $grouplist
754754
done
755755
# clear progress message
@@ -788,7 +788,7 @@ all_groups ()
788788

789789
typeset func
790790
typeset file=$(mktemp -t composure.XXXX)
791-
for func in $(typeset_functions)
791+
for func in $(_typeset_functions)
792792
do
793793
typeset -f $func | metafor group >> $file
794794
done

0 commit comments

Comments
 (0)