home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: WPS_PM / WPS_PM.zip / ICONPL2.ZIP / README < prev    next >
Text File  |  1988-11-03  |  2KB  |  55 lines

  1. These diskettes contain files for Version 7.5 of Icon for OS/2 as follows:
  2.  
  3.     arc.exe        archiving utility
  4.     icon.arc    executable binaries [268KB]
  5.     docs.arc    archived documents [93KB]
  6.     samples.arc    archived sample programs and data [3KB]
  7.     readme        this file
  8.  
  9. The figures in brackets indicate the approximate amount of disk space
  10. needed for the unloaded files. 
  11.  
  12. The executable files should be unloaded on a place on your PATH specification.
  13. For example, if this diskette is mounted in your A drive and you set
  14. your current directory to where you want the files, the following
  15. unloads the executable binary files:
  16.  
  17.     a:arc x a:icon.arc
  18.  
  19. The documents and sample programs can be unloaded in a similar fashion
  20. to the executable files.
  21.  
  22. See guide.doc for information about this implementation of Icon and for
  23. pointers to other documents.
  24.  
  25. Current Status of Version 7:
  26. ----------------------------
  27. There are a few minor changes in Version 7.5 of Icon that are not
  28. described in the Version 7 technical report:
  29.  
  30. +  Octal escape sequences for nonprintable characters in imaged strings
  31.    have been replaced by hexadecimal escape sequences. This change will
  32.    show up if you run the standard tests and compare the results with
  33.    former test output.
  34.  
  35. +  The initial size of &main is now 1 instead of 0 to reflect
  36.    its conceptual activation to initiate program execution.
  37.  
  38. +  An attempt to create a refreshed copy of &main now produces run-time
  39.    error 215 (formerly it caused a memory violation).
  40.  
  41. +  The function to force a garbage collection now has two arguments:
  42.    collect(i,j). The first argument is an integer that specifies
  43.    the region in which space is required: 0 for no region, 1 for the static
  44.    region, 2 for the string region, and 3 for the block region. The second
  45.    argument specifies how much space is required in the region following
  46.    collection. The function fails if the requested amount of space cannot be
  47.    obtained. The default values for i and j are 0. A garbage collection is
  48.    performed even if no space is required.
  49.  
  50. +  The environment variable BLOCKSIZE is now provided as a synonym
  51.    for HEAPSIZE.
  52.  
  53. +  When the value of &trace is negative, it is decremented for each trace
  54.    message.  Formerly, it was decremented only when it was positive.
  55.