separate (Help_Utility)
-------------------------PROLOGUE---------------------------------------
--                                                                    -*
-- Unit name    :  PRINT_TOPIC_TEXT
-- Date created :  28 January 1985
-- Last update  :
--                                                                    -*
------------------------------------------------------------------------
--                                                                    -*
-- Abstract     : This procedure prints the text assoicated with the
----------------: given node.
--                                                                    -*
------------------------------------------------------------------------
--
-- Mnemonic     :
-- Name         :
-- Release date :
------------------ Revision history ------------------------------------
--
-- DATE  AUTHOR   HISTORY
--
--
--


--------------------END-PROLOGUE----------------------------------------
procedure Print_Topic_Text (Node : in Help_Utility.Help_Link) is

    Current_Line : Help_Info_Support.Text_Link;

begin

    Current_Line := Node.Text_Lines;

    while Current_Line /= null loop
        Help_Info_Support.Append_To_Display
           (Current_Line.Text_Line, Current_Line.Line_Length);
        Current_Line := Current_Line.Next_Line;
    end loop;

exception
    when others =>
        raise;
end Print_Topic_Text;