separate (Help_Utility)
-------------------------PROLOGUE---------------------------------------
--                                                                    -*
-- Unit name    :  EXIT_HELP
-- Author       :  BASKETTE
-- Date created :  28 January 1985
-- Last update  :
--                                                                    -*
------------------------------------------------------------------------
--                                                                    -*
-- Abstract     :  The procedure sets the help mode flag to false and
----------------: resets the current node pointer to the top node of the
----------------: tree.
--                                                                    -*
------------------------------------------------------------------------
--
-- Mnemonic     :
-- Name         :
-- Release date :
------------------ Revision history ------------------------------------
--
-- DATE  AUTHOR   HISTORY
--
--
--


--------------------END-PROLOGUE----------------------------------------
--with Current_Exception;
procedure Exit_Help is

begin

    Help_Utility.Current_Node := Help_Utility.Top_Node;

    -- reset HELP_MODE to off

    Help_Utility.Help_Mode := False;
    Help_Utility.First_Help_Me_Call := True;

end Exit_Help;