home *** CD-ROM | disk | FTP | other *** search
/ Programmer's ROM - The Computer Language Library / programmersrom.iso / ada / spell / spell2.cmm < prev    next >
Encoding:
Text File  |  1988-05-03  |  1.3 KB  |  40 lines

  1.  
  2.  
  3.                      Comments on Porting
  4.                            Speller
  5.                  by TI
  6.                          to DEC Ada
  7.  
  8.                                                           Tool 8_4
  9.                               June 1, 1985
  10.  
  11. COMPILATION
  12. -----------
  13.   A VMS command file was created from the ordered list of compilation
  14.   units provided in SPELLER_CMP.DIS.
  15.  
  16.   We were able to recompile SPELLER with only minor changes in three files.
  17.   Errors occurred due to inconsistent usage of "in" between subprogram
  18.   specifications and bodies.  The use of the CURRENT_EXCEPTION
  19.   package that is provided with the DG Ada compiler was eliminated.
  20.  
  21.   In file MANAGER_BODY,
  22.        line 656 deleted "in" to match specification
  23.        line 770 deleted "in" to match specification
  24.  
  25.  
  26.  
  27. EXECUTION
  28. ---------
  29.   We were able to execute the SPELLER and it appeared to be in workable
  30.   condition.  The following problems were noted:
  31.  
  32.    1.  The help file HELP_FILE.INI was not included in the source and
  33.        should be distributed.  
  34.  
  35.    2.  SPELLER is designed to prompt the user and receive a single-character
  36.        response.  The DEC TEXT_IO implementation issues a CR LF between a
  37.        put and a get and a get is not serviced until a CR LF is entered (i.e.
  38.        buffered IO).
  39.  
  40.