From 4bbb02cee9bd18c5bca392b75bad0ce6eee8a1b5 Mon Sep 17 00:00:00 2001 From: Alain Reguera Delgado Date: Jul 23 2011 02:24:56 +0000 Subject: Update `texinfo_editEntry.sh': - Update comment. - Remove `eval' definition when EDITOR is called to edit documentation entry. --- diff --git a/Scripts/Functions/Help/Texinfo/texinfo_editEntry.sh b/Scripts/Functions/Help/Texinfo/texinfo_editEntry.sh index c9bc146..8621d1c 100755 --- a/Scripts/Functions/Help/Texinfo/texinfo_editEntry.sh +++ b/Scripts/Functions/Help/Texinfo/texinfo_editEntry.sh @@ -53,13 +53,15 @@ function texinfo_editEntry { # Print action message. cli_printMessage "$MANUAL_ENTRY" --as-updating-line - # Rebuild menu definition set inside section entry using one - # level ahead only. + # Rebuild section menu definitions before editing the + # documentation entry. This way, if there is any change in the + # section menu definition, it will be visible to you on + # edition. ${FLAG_BACKEND}_makeSeeAlso "$MANUAL_ENTRY" fi - # Use default text editor to edit the documentation entry. - eval $EDITOR $MANUAL_ENTRY + # Use default text editor to write changes on documentation entry. + $EDITOR $MANUAL_ENTRY }