From 6e32b66fbe33f63f08515abf0e072fca78b877eb Mon Sep 17 00:00:00 2001 From: Alain Reguera Delgado Date: May 30 2011 02:04:05 +0000 Subject: Update Backends/Texinfo/texinfo_editEntry.sh. Add MANUAL_ suffix to ENTRY variable names. --- diff --git a/Scripts/Functions/Help/Backends/Texinfo/texinfo_editEntry.sh b/Scripts/Functions/Help/Backends/Texinfo/texinfo_editEntry.sh index dfabfe6..8b96169 100755 --- a/Scripts/Functions/Help/Backends/Texinfo/texinfo_editEntry.sh +++ b/Scripts/Functions/Help/Backends/Texinfo/texinfo_editEntry.sh @@ -49,11 +49,11 @@ function texinfo_editEntry { fi # Verify section definition inside chapters. - if [[ ! -f $ENTRY ]];then + if [[ ! -f $MANUAL_ENTRY ]];then # Print confirmation question. cli_printMessage "`gettext "The following documentation section will be created:"`" - cli_printMessage "$ENTRY" --as-response-line + cli_printMessage "$MANUAL_ENTRY" --as-response-line cli_printMessage "`gettext "Do you want to continue?"`" --as-yesornorequest-line # Update chapter section related menu. @@ -74,11 +74,11 @@ function texinfo_editEntry { else # Print action message. - cli_printMessage "$ENTRY" --as-updating-line + cli_printMessage "$MANUAL_ENTRY" --as-updating-line fi # Use default text editor to edit the documentation entry. - eval $EDITOR $ENTRY + eval $EDITOR $MANUAL_ENTRY }