diff --git a/Scripts/Functions/Help/Texinfo/texinfo_copyEntry.sh b/Scripts/Functions/Help/Texinfo/texinfo_copyEntry.sh index c7e7723..266618e 100755 --- a/Scripts/Functions/Help/Texinfo/texinfo_copyEntry.sh +++ b/Scripts/Functions/Help/Texinfo/texinfo_copyEntry.sh @@ -1,6 +1,6 @@ #!/bin/bash # -# help_copyEntry.sh -- This function copies documentation entries +# texinfo_copyEntry.sh -- This function copies documentation entries # inside the working copy and updates the documentation structure to # reflect the changes. # @@ -24,7 +24,7 @@ # $Id$ # ---------------------------------------------------------------------- -function help_copyEntry { +function texinfo_copyEntry { # Verify number of non-option arguments passed to centos-art.sh # script. diff --git a/Scripts/Functions/Help/Texinfo/texinfo_createChapters.sh b/Scripts/Functions/Help/Texinfo/texinfo_createChapters.sh index 0e6a3fb..5fb89e0 100755 --- a/Scripts/Functions/Help/Texinfo/texinfo_createChapters.sh +++ b/Scripts/Functions/Help/Texinfo/texinfo_createChapters.sh @@ -1,6 +1,6 @@ #!/bin/bash # -# help_createChapters.sh -- This function creates the chapters' +# texinfo_createChapters.sh -- This function creates the chapters' # base directory structure using templates as reference. # # Copyright (C) 2009, 2010, 2011 The CentOS Artwork SIG @@ -23,7 +23,7 @@ # $Id$ # ---------------------------------------------------------------------- -function help_createChapters { +function texinfo_createChapters { local MANUAL_CHAPTER_NAME='' diff --git a/Scripts/Functions/Help/Texinfo/texinfo_createStructure.sh b/Scripts/Functions/Help/Texinfo/texinfo_createStructure.sh index 3361949..bac1c23 100755 --- a/Scripts/Functions/Help/Texinfo/texinfo_createStructure.sh +++ b/Scripts/Functions/Help/Texinfo/texinfo_createStructure.sh @@ -1,6 +1,6 @@ #!/bin/bash # -# help_createStructure.sh -- This function creates the +# texinfo_createStructure.sh -- This function creates the # documentation structure of a manual using the current language as # reference. # @@ -24,7 +24,7 @@ # $Id$ # ---------------------------------------------------------------------- -function help_createStructure { +function texinfo_createStructure { # Verify manual base directory. The manual base directory is where # the whole documentation manual is stored in. If it already diff --git a/Scripts/Functions/Help/Texinfo/texinfo_deleteCrossReferences.sh b/Scripts/Functions/Help/Texinfo/texinfo_deleteCrossReferences.sh index e6dfb8e..4d55858 100755 --- a/Scripts/Functions/Help/Texinfo/texinfo_deleteCrossReferences.sh +++ b/Scripts/Functions/Help/Texinfo/texinfo_deleteCrossReferences.sh @@ -1,9 +1,9 @@ #!/bin/bash # -# help_deleteCrossReferences.sh -- This function looks inside +# texinfo_deleteCrossReferences.sh -- This function looks inside # texinfo source files, from section level on, and removes all cross # referece definitions related to a documentation entry. Use this -# function in coordination with help_deleteEntry function, in order +# function in coordination with texinfo_deleteEntry function, in order # to keep cross reference information, inside the documentation # manual, syncronized. # @@ -27,7 +27,7 @@ # $Id$ # ---------------------------------------------------------------------- -function help_deleteCrossReferences { +function texinfo_deleteCrossReferences { local -a PATTERN local -a REPLACE diff --git a/Scripts/Functions/Help/Texinfo/texinfo_deleteEntry.sh b/Scripts/Functions/Help/Texinfo/texinfo_deleteEntry.sh index de9b4c7..ed57b4a 100755 --- a/Scripts/Functions/Help/Texinfo/texinfo_deleteEntry.sh +++ b/Scripts/Functions/Help/Texinfo/texinfo_deleteEntry.sh @@ -1,6 +1,6 @@ #!/bin/bash # -# help_deleteEntry.sh -- This function removes a documentation entry +# texinfo_deleteEntry.sh -- This function removes a documentation entry # from documentation directory structure. # # Copyright (C) 2009, 2010, 2011 The CentOS Artwork SIG @@ -23,7 +23,7 @@ # $Id$ # ---------------------------------------------------------------------- -function help_deleteEntry { +function texinfo_deleteEntry { local MANUAL_ENTRY='' local MANUAL_ENTRY_DIR='' diff --git a/Scripts/Functions/Help/Texinfo/texinfo_editEntry.sh b/Scripts/Functions/Help/Texinfo/texinfo_editEntry.sh index 6e53abe..714b25b 100755 --- a/Scripts/Functions/Help/Texinfo/texinfo_editEntry.sh +++ b/Scripts/Functions/Help/Texinfo/texinfo_editEntry.sh @@ -1,6 +1,6 @@ #!/bin/bash # -# help_editEntry.sh -- This function implements the edition flow of +# texinfo_editEntry.sh -- This function implements the edition flow of # documentation entries inside the working copy. # # Copyright (C) 2009, 2010, 2011 The CentOS Artwork SIG @@ -23,7 +23,7 @@ # $Id$ # ---------------------------------------------------------------------- -function help_editEntry { +function texinfo_editEntry { # Print separator line. cli_printMessage '-' --as-separator-line diff --git a/Scripts/Functions/Help/Texinfo/texinfo_getChapterDir.sh b/Scripts/Functions/Help/Texinfo/texinfo_getChapterDir.sh index bcb6e1f..44a8a88 100755 --- a/Scripts/Functions/Help/Texinfo/texinfo_getChapterDir.sh +++ b/Scripts/Functions/Help/Texinfo/texinfo_getChapterDir.sh @@ -1,6 +1,6 @@ #!/bin/bash # -# help_getChapterDir.sh -- This function outputs the entry's +# texinfo_getChapterDir.sh -- This function outputs the entry's # chapter directory. # # Copyright (C) 2009, 2010, 2011 The CentOS Artwork SIG @@ -23,7 +23,7 @@ # $Id$ # ---------------------------------------------------------------------- -function help_getChapterDir { +function texinfo_getChapterDir { local MANUAL_ENTRY='' local MANUAL_ENTRIES="$1" diff --git a/Scripts/Functions/Help/Texinfo/texinfo_getEntry.sh b/Scripts/Functions/Help/Texinfo/texinfo_getEntry.sh index 201652d..bd8bcdc 100755 --- a/Scripts/Functions/Help/Texinfo/texinfo_getEntry.sh +++ b/Scripts/Functions/Help/Texinfo/texinfo_getEntry.sh @@ -1,6 +1,6 @@ #!/bin/bash # -# help_getEntry.sh -- This function builds a documentation entry +# texinfo_getEntry.sh -- This function builds a documentation entry # based on a location specified. Location specification can be both # action value (ACTIONVAL) variable or a value passed as first # positional parameter. @@ -25,7 +25,7 @@ # $Id$ # ---------------------------------------------------------------------- -function help_getEntry { +function texinfo_getEntry { # Define variables as local to avoid conflicts outside. local MANUAL_ENTRY='' diff --git a/Scripts/Functions/Help/Texinfo/texinfo_getNode.sh b/Scripts/Functions/Help/Texinfo/texinfo_getNode.sh index 39818b5..03bb857 100755 --- a/Scripts/Functions/Help/Texinfo/texinfo_getNode.sh +++ b/Scripts/Functions/Help/Texinfo/texinfo_getNode.sh @@ -1,6 +1,6 @@ #!/bin/bash # -# help_getNode.sh -- This function cleans up the action value +# texinfo_getNode.sh -- This function cleans up the action value # (ACTIONVAL) directory to make a node name from it. # # Copyright (C) 2009, 2010, 2011 The CentOS Artwork SIG @@ -23,7 +23,7 @@ # $Id$ # ---------------------------------------------------------------------- -function help_getNode { +function texinfo_getNode { # Define documentation entry. local MANUAL_ENTRY="$1" diff --git a/Scripts/Functions/Help/Texinfo/texinfo_makeSeeAlso.sh b/Scripts/Functions/Help/Texinfo/texinfo_makeSeeAlso.sh index 8eaa39d..05b8010 100755 --- a/Scripts/Functions/Help/Texinfo/texinfo_makeSeeAlso.sh +++ b/Scripts/Functions/Help/Texinfo/texinfo_makeSeeAlso.sh @@ -1,6 +1,6 @@ #!/bin/bash # -# help_makeSeeAlso.sh -- This function creates an itemized list +# texinfo_makeSeeAlso.sh -- This function creates an itemized list # of links to refer parent documentation entries. This list of links # is expanded wherever the =TEXINFO_SEEALSO= translation marker be # placed in the documentation entry. @@ -25,7 +25,7 @@ # $Id$ # ---------------------------------------------------------------------- -function help_makeSeeAlso { +function texinfo_makeSeeAlso { local FILE="$1" local NODE="$2" diff --git a/Scripts/Functions/Help/Texinfo/texinfo_renameCrossReferences.sh b/Scripts/Functions/Help/Texinfo/texinfo_renameCrossReferences.sh index 17fd87c..755d708 100755 --- a/Scripts/Functions/Help/Texinfo/texinfo_renameCrossReferences.sh +++ b/Scripts/Functions/Help/Texinfo/texinfo_renameCrossReferences.sh @@ -1,6 +1,6 @@ #!/bin/bash # -# help_renameCrossReferences.sh -- This function replaces a node +# texinfo_renameCrossReferences.sh -- This function replaces a node # pattern with a node replacement and updates cross-reference # definitions to reflect the changes. # @@ -24,7 +24,7 @@ # $Id$ # ---------------------------------------------------------------------- -function help_renameCrossReferences { +function texinfo_renameCrossReferences { local MANUAL_ENTRY_SRC=$(${FUNCNAM}_getEntry "$1") local MANUAL_ENTRY_DST=$(${FUNCNAM}_getEntry "$2") diff --git a/Scripts/Functions/Help/Texinfo/texinfo_renameEntry.sh b/Scripts/Functions/Help/Texinfo/texinfo_renameEntry.sh index 95f2610..c3335d9 100755 --- a/Scripts/Functions/Help/Texinfo/texinfo_renameEntry.sh +++ b/Scripts/Functions/Help/Texinfo/texinfo_renameEntry.sh @@ -1,6 +1,6 @@ #!/bin/bash # -# help_renameEntry.sh -- This function renames documentation entries +# texinfo_renameEntry.sh -- This function renames documentation entries # and updates documentation structure to reflect changes. # # Copyright (C) 2009, 2010, 2011 The CentOS Artwork SIG @@ -23,7 +23,7 @@ # $Id$ # ---------------------------------------------------------------------- -function help_renameEntry { +function texinfo_renameEntry { # Copy source documentation entry. ${FUNCNAM}_copyEntry "$1" "$2" diff --git a/Scripts/Functions/Help/Texinfo/texinfo_restoreCrossReferences.sh b/Scripts/Functions/Help/Texinfo/texinfo_restoreCrossReferences.sh index adff834..615079c 100755 --- a/Scripts/Functions/Help/Texinfo/texinfo_restoreCrossReferences.sh +++ b/Scripts/Functions/Help/Texinfo/texinfo_restoreCrossReferences.sh @@ -1,14 +1,14 @@ #!/bin/bash # -# help_restoreCrossReferences.sh -- This function looks inside +# texinfo_restoreCrossReferences.sh -- This function looks inside # texinfo source files, from section level on, and restores any cross # reference related to a documentation entry. This function is used in # those cases where documentation entries are created/recreated to # documentation structure. It is a verification that looks for # matching documentation entries previously defined as removed by -# help_deleteCrossReferences function. The -# help_restoreCrossReferences function relays in the removed -# message format produced by help_deleteCrossReferences +# texinfo_deleteCrossReferences function. The +# texinfo_restoreCrossReferences function relays in the removed +# message format produced by texinfo_deleteCrossReferences # function, in order to return them back into the link format. # # Copyright (C) 2009, 2010, 2011 The CentOS Artwork SIG @@ -31,7 +31,7 @@ # $Id$ # ---------------------------------------------------------------------- -function help_restoreCrossReferences { +function texinfo_restoreCrossReferences { local -a PATTERN local -a REPLACE diff --git a/Scripts/Functions/Help/Texinfo/texinfo_searchIndex.sh b/Scripts/Functions/Help/Texinfo/texinfo_searchIndex.sh index 7cd62bc..536997d 100644 --- a/Scripts/Functions/Help/Texinfo/texinfo_searchIndex.sh +++ b/Scripts/Functions/Help/Texinfo/texinfo_searchIndex.sh @@ -1,6 +1,6 @@ #!/bin/bash # -# help_searchIndex.sh -- This function does an index search inside the +# texinfo_searchIndex.sh -- This function does an index search inside the # info document. # # Copyright (C) 2009, 2010, 2011 The CentOS Artwork SIG @@ -23,7 +23,7 @@ # $Id$ # ---------------------------------------------------------------------- -function help_searchIndex { +function texinfo_searchIndex { # Rebuild output files to propagate recent changes. ${FUNCNAM}_updateOutputFiles diff --git a/Scripts/Functions/Help/Texinfo/texinfo_searchNode.sh b/Scripts/Functions/Help/Texinfo/texinfo_searchNode.sh index 4a3c676..ae0a811 100755 --- a/Scripts/Functions/Help/Texinfo/texinfo_searchNode.sh +++ b/Scripts/Functions/Help/Texinfo/texinfo_searchNode.sh @@ -1,6 +1,6 @@ #!/bin/bash # -# help_searchNode.sh -- This function does a node search inside the +# texinfo_searchNode.sh -- This function does a node search inside the # info document. # # Copyright (C) 2009, 2010, 2011 The CentOS Artwork SIG @@ -23,7 +23,7 @@ # $Id$ # ---------------------------------------------------------------------- -function help_searchNode { +function texinfo_searchNode { # Print separator line. cli_printMessage '-' --as-separator-line diff --git a/Scripts/Functions/Help/Texinfo/texinfo_updateChaptersMenu.sh b/Scripts/Functions/Help/Texinfo/texinfo_updateChaptersMenu.sh index 9451923..0751e8b 100755 --- a/Scripts/Functions/Help/Texinfo/texinfo_updateChaptersMenu.sh +++ b/Scripts/Functions/Help/Texinfo/texinfo_updateChaptersMenu.sh @@ -1,6 +1,6 @@ #!/bin/bash # -# help_updateChaptersMenu.sh -- This function updates chapter menu. +# texinfo_updateChaptersMenu.sh -- This function updates chapter menu. # # Copyright (C) 2009, 2010, 2011 The CentOS Artwork SIG # @@ -22,7 +22,7 @@ # $Id$ # ---------------------------------------------------------------------- -function help_updateChaptersMenu { +function texinfo_updateChaptersMenu { local ACTION=$1 local MENUCHAPTERS='' diff --git a/Scripts/Functions/Help/Texinfo/texinfo_updateChaptersNodes.sh b/Scripts/Functions/Help/Texinfo/texinfo_updateChaptersNodes.sh index df76d74..8afff29 100755 --- a/Scripts/Functions/Help/Texinfo/texinfo_updateChaptersNodes.sh +++ b/Scripts/Functions/Help/Texinfo/texinfo_updateChaptersNodes.sh @@ -1,6 +1,6 @@ #!/bin/bash # -# help_updateChaptersNodes.sh -- This function updates nodes of +# texinfo_updateChaptersNodes.sh -- This function updates nodes of # chapters based on menu of chapters. # # Copyright (C) 2009, 2010, 2011 The CentOS Artwork SIG @@ -23,7 +23,7 @@ # $Id$ # ---------------------------------------------------------------------- -function help_updateChaptersNodes { +function texinfo_updateChaptersNodes { # Build list "nodes of chapters" based on menu of chapters. local CHAPTERNODES=$(cat ${MANUAL_BASEFILE}-menu.${MANUAL_EXTENSION} \ diff --git a/Scripts/Functions/Help/Texinfo/texinfo_updateMenu.sh b/Scripts/Functions/Help/Texinfo/texinfo_updateMenu.sh index 8b5886b..c7591df 100755 --- a/Scripts/Functions/Help/Texinfo/texinfo_updateMenu.sh +++ b/Scripts/Functions/Help/Texinfo/texinfo_updateMenu.sh @@ -1,6 +1,6 @@ #!/bin/bash # -# help_updateMenu.sh -- This function updates menu lines inside +# texinfo_updateMenu.sh -- This function updates menu lines inside # texinfo chapters. If this function is called with the # 'remove-entry' string as first argument, then the menu line related # to the entry being processed is removed. If this function is called @@ -29,7 +29,7 @@ # $Id$ # ---------------------------------------------------------------------- -function help_updateMenu { +function texinfo_updateMenu { # Specify which action to do inside chapter's menu. local ACTION="$1" @@ -56,7 +56,7 @@ function help_updateMenu { 'update-entry' | * ) # Add menu line to chapter's menu. This is the default - # behaivour if no argument is passed to help_updateMenu + # behaivour if no argument is passed to texinfo_updateMenu # function. MENU="$MENU $MENULINE" diff --git a/Scripts/Functions/Help/Texinfo/texinfo_updateNodes.sh b/Scripts/Functions/Help/Texinfo/texinfo_updateNodes.sh index be94c2f..71c7520 100755 --- a/Scripts/Functions/Help/Texinfo/texinfo_updateNodes.sh +++ b/Scripts/Functions/Help/Texinfo/texinfo_updateNodes.sh @@ -1,6 +1,6 @@ #!/bin/bash # -# help_updateNodes.sh -- This function updates chapter's nodes +# texinfo_updateNodes.sh -- This function updates chapter's nodes # definition using the chapter's menu as reference. # # Copyright (C) 2009, 2010, 2011 The CentOS Artwork SIG @@ -23,7 +23,7 @@ # $Id$ # ---------------------------------------------------------------------- -function help_updateNodes { +function texinfo_updateNodes { # Retrive nodes' entries from chapter-menu.texinfo file. local NODES=$(cat $MANUAL_CHAPTER_DIR/chapter-menu.${MANUAL_EXTENSION} \ diff --git a/Scripts/Functions/Help/Texinfo/texinfo_updateOutputFileDocbook.sh b/Scripts/Functions/Help/Texinfo/texinfo_updateOutputFileDocbook.sh index ef46306..68cdb17 100755 --- a/Scripts/Functions/Help/Texinfo/texinfo_updateOutputFileDocbook.sh +++ b/Scripts/Functions/Help/Texinfo/texinfo_updateOutputFileDocbook.sh @@ -1,6 +1,6 @@ #!/bin/bash # -# help_updateOutputFileDocbook.sh -- This function exports +# texinfo_updateOutputFileDocbook.sh -- This function exports # documentation manual to DocBook format. # # Copyright (C) 2009, 2010, 2011 The CentOS Artwork SIG @@ -23,7 +23,7 @@ # $Id$ # ---------------------------------------------------------------------- -function help_updateOutputFileDocbook { +function texinfo_updateOutputFileDocbook { # Print action message. cli_printMessage "${MANUAL_BASEFILE}.docbook" --as-updating-line diff --git a/Scripts/Functions/Help/Texinfo/texinfo_updateOutputFileInfo.sh b/Scripts/Functions/Help/Texinfo/texinfo_updateOutputFileInfo.sh index a3f523a..b448817 100755 --- a/Scripts/Functions/Help/Texinfo/texinfo_updateOutputFileInfo.sh +++ b/Scripts/Functions/Help/Texinfo/texinfo_updateOutputFileInfo.sh @@ -1,6 +1,6 @@ #!/bin/bash # -# help_updateOutputFileInfo.sh -- This function exports +# texinfo_updateOutputFileInfo.sh -- This function exports # documentation manual to info format. # # Copyright (C) 2009, 2010, 2011 The CentOS Artwork SIG @@ -23,7 +23,7 @@ # $Id$ # ---------------------------------------------------------------------- -function help_updateOutputFileInfo { +function texinfo_updateOutputFileInfo { # Output action message. cli_printMessage "${MANUAL_BASEFILE}.info.bz2" --as-updating-line diff --git a/Scripts/Functions/Help/Texinfo/texinfo_updateOutputFilePdf.sh b/Scripts/Functions/Help/Texinfo/texinfo_updateOutputFilePdf.sh index f0464ce..6a9898e 100755 --- a/Scripts/Functions/Help/Texinfo/texinfo_updateOutputFilePdf.sh +++ b/Scripts/Functions/Help/Texinfo/texinfo_updateOutputFilePdf.sh @@ -1,6 +1,6 @@ #!/bin/bash # -# help_updateOutputFilePdf.sh -- This function exports documentation +# texinfo_updateOutputFilePdf.sh -- This function exports documentation # manual to PDF format. # # Copyright (C) 2009, 2010, 2011 The CentOS Artwork SIG @@ -23,7 +23,7 @@ # $Id$ # ---------------------------------------------------------------------- -function help_updateOutputFilePdf { +function texinfo_updateOutputFilePdf { # Output action message. cli_printMessage "${MANUAL_BASEFILE}.pdf" --as-updating-line diff --git a/Scripts/Functions/Help/Texinfo/texinfo_updateOutputFilePlaintext.sh b/Scripts/Functions/Help/Texinfo/texinfo_updateOutputFilePlaintext.sh index c476184..5a707ee 100755 --- a/Scripts/Functions/Help/Texinfo/texinfo_updateOutputFilePlaintext.sh +++ b/Scripts/Functions/Help/Texinfo/texinfo_updateOutputFilePlaintext.sh @@ -1,6 +1,6 @@ #!/bin/bash # -# help_updateOutputFilePlaintext.sh -- This function exports +# texinfo_updateOutputFilePlaintext.sh -- This function exports # documentation manual to plain-text format. # # Copyright (C) 2009, 2010, 2011 The CentOS Artwork SIG @@ -23,7 +23,7 @@ # $Id$ # ---------------------------------------------------------------------- -function help_updateOutputFilePlaintext { +function texinfo_updateOutputFilePlaintext { # Output action message. cli_printMessage "${MANUAL_BASEFILE}.txt.bz2" --as-updating-line diff --git a/Scripts/Functions/Help/Texinfo/texinfo_updateOutputFileXhtml.sh b/Scripts/Functions/Help/Texinfo/texinfo_updateOutputFileXhtml.sh index f8aad18..29bf94c 100755 --- a/Scripts/Functions/Help/Texinfo/texinfo_updateOutputFileXhtml.sh +++ b/Scripts/Functions/Help/Texinfo/texinfo_updateOutputFileXhtml.sh @@ -1,6 +1,6 @@ #!/bin/bash # -# help_updateOutputFileXhtml.sh -- This function exports +# texinfo_updateOutputFileXhtml.sh -- This function exports # documentation manual to HTML format. # # Copyright (C) 2009, 2010, 2011 The CentOS Artwork SIG @@ -23,7 +23,7 @@ # $Id$ # ---------------------------------------------------------------------- -function help_updateOutputFileXhtml { +function texinfo_updateOutputFileXhtml { # Verify initialization files used by texi2html. cli_checkFiles ${MANUAL_TLDIR}/${MANUAL_NAME}-init.pl diff --git a/Scripts/Functions/Help/Texinfo/texinfo_updateOutputFileXml.sh b/Scripts/Functions/Help/Texinfo/texinfo_updateOutputFileXml.sh index 306f906..10191a2 100755 --- a/Scripts/Functions/Help/Texinfo/texinfo_updateOutputFileXml.sh +++ b/Scripts/Functions/Help/Texinfo/texinfo_updateOutputFileXml.sh @@ -1,6 +1,6 @@ #!/bin/bash # -# help_updateOutputFileXml.sh -- This function exports documentation +# texinfo_updateOutputFileXml.sh -- This function exports documentation # manual to XML format. # # Copyright (C) 2009, 2010, 2011 The CentOS Artwork SIG @@ -23,7 +23,7 @@ # $Id$ # ---------------------------------------------------------------------- -function help_updateOutputFileXml { +function texinfo_updateOutputFileXml { # Print action message. cli_printMessage "${MANUAL_BASEFILE}.xml" --as-updating-line diff --git a/Scripts/Functions/Help/Texinfo/texinfo_updateOutputFiles.sh b/Scripts/Functions/Help/Texinfo/texinfo_updateOutputFiles.sh index c81f132..a602587 100755 --- a/Scripts/Functions/Help/Texinfo/texinfo_updateOutputFiles.sh +++ b/Scripts/Functions/Help/Texinfo/texinfo_updateOutputFiles.sh @@ -1,6 +1,6 @@ #!/bin/bash # -# help_updateOutputFiles.sh -- This function exports documentation +# texinfo_updateOutputFiles.sh -- This function exports documentation # manual to different output formats. # # Copyright (C) 2009, 2010, 2011 The CentOS Artwork SIG @@ -23,7 +23,7 @@ # $Id$ # ---------------------------------------------------------------------- -function help_updateOutputFiles { +function texinfo_updateOutputFiles { # Print separator line. cli_printMessage '-' --as-separator-line