From 9c16a66d6a514daf418ef3a3054166d2d576dcef Mon Sep 17 00:00:00 2001 From: Alain Reguera Delgado Date: Jun 10 2011 01:04:09 +0000 Subject: Update help.sh: - Start using `cli_exportFunctions' instead of `cli_getFunctions'. --- diff --git a/Scripts/Functions/Help/help.sh b/Scripts/Functions/Help/help.sh index b19f83a..e59ef57 100755 --- a/Scripts/Functions/Help/help.sh +++ b/Scripts/Functions/Help/help.sh @@ -60,12 +60,12 @@ function help { # Verify and initialize backend functions. There is no need to # load all backend-specific functions when we can use just one - # backend among many. Keep the cli_getFunctions function calling - # after all variables and arguments definitions. + # backend among many. Keep the cli_exportFunctions function + # calling after all variables and arguments definitions. if [[ ${FLAG_BACKEND} =~ '^texinfo$' ]];then - cli_getFunctions "${FUNCDIR}/${FUNCDIRNAM}" 'texinfo' + cli_exportFunctions "${FUNCDIR}/${FUNCDIRNAM}" 'texinfo' elif [[ ${FLAG_BACKEND} =~ '^docbook$' ]];then - cli_getFunctions "${FUNCDIR}/${FUNCDIRNAM}" 'docbook' + cli_exportFunctions "${FUNCDIR}/${FUNCDIRNAM}" 'docbook' else cli_printMessage "`gettext "The backend provided is not supported."`" --as-error-line fi