home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #19 / NN_1992_19.iso / spool / comp / lang / lisp / 2341 < prev    next >
Encoding:
Internet Message Format  |  1992-08-31  |  25.0 KB

  1. Path: sparky!uunet!ogicse!das-news.harvard.edu!cantaloupe.srv.cs.cmu.edu!crabapple.srv.cs.cmu.edu!ram
  2. From: ram+@cs.cmu.edu (Rob MacLachlan)
  3. Newsgroups: comp.lang.lisp
  4. Subject: CMU Common Lisp 16e Available
  5. Message-ID: <Btux9A.I9F.1@cs.cmu.edu>
  6. Date: 31 Aug 92 16:46:18 GMT
  7. Article-I.D.: cs.Btux9A.I9F.1
  8. Sender: news@cs.cmu.edu (Usenet News System)
  9. Organization: School of Computer Science, Carnegie Mellon
  10. Lines: 560
  11. Nntp-Posting-Host: lisp-pmax1.slisp.cs.cmu.edu
  12.  
  13.  
  14.         Release notes for CMU Common Lisp 16e, 5 August 92
  15.  
  16. 16e is primarily a bug-fix release.  The main changes from 16d are:
  17.  -- CLOS support is from March 92 PCL (2a).  This is a new version of PCL
  18.     developed by Richard Harris which incorporates many bug-fixes and ANSI
  19.     compliance cleanups.  He has also back-merged the CMU changes into his
  20.     sources so that we can release future PCLs without time-consuming merging.
  21.     On the downside, there are a couple of new bugs.  Harris has announced
  22.     patches to a couple of problems.
  23.  -- TRACE has been reimplemented, has a new syntax and new features.
  24.  -- The hardcopy and info documentation has been updated.  Note that it
  25.     describes some debugger capabilities (breakpoints) which won't appear
  26.     until version 17.
  27.  
  28. The fasl file format is the same as for 16d, but some code may need to be
  29. recompiled.  In particular, the expansion of PPRINT-LOGICAL-BLOCK has changed.
  30.  
  31. Distribution:
  32.  
  33. CMU Common Lisp is only available via anonymous FTP.  We don't have the
  34. manpower to make tapes.  These are our distribution machines:
  35.     lisp-rt1.slisp.cs.cmu.edu (128.2.217.9)
  36.     lisp-rt2.slisp.cs.cmu.edu (128.2.217.10)
  37.  
  38. Log in with the user "anonymous" and "username@host" as password (i.e. your
  39. EMAIL address.)  When you log in, the current directory should be set to the
  40. CMU CL release area.  If you have any trouble with FTP access, please send mail
  41. to slisp@cs.cmu.edu.
  42.  
  43. The release area holds compressed tar files with names of the form:
  44.     <version>-<machine>_<os>.tar.Z
  45.     <version>-extra-<machine>_<os>.tar.Z
  46.  
  47. FTP compressed tar archives in binary mode.  To extract, "cd" to the
  48. directory that is to be the root of the tree, then type:
  49.     uncompress <file.tar.Z | tar xf - .
  50.  
  51. As of 8/6/92, the latest SunOS Sparc release is:
  52.     16e-sun4c_41.tar.Z (6.5 meg)
  53.     16e-extra-sun4c_41.tar.Z (3.5 meg)
  54.  
  55. The first file holds binaries and documentation for the basic Lisp system,
  56. while the second `-extra' file contains the Hemlock editor, the graphical
  57. inspector and the CLX interface to X11.  The basic configuration takes 16
  58. megabytes of disk space; adding the extras takes another 8 megabytes.  For
  59. installation directions, see the section "site initialization" in README file
  60. at the root of the tree.
  61.  
  62. If poor network connections make it difficult to transfer a 10 meg file, the
  63. release is also available split into 2 megabyte chunks, suffixed `.0', `.1',
  64. etc.  To extract from multiple files, use:
  65.     cat file.tar.Z.* | uncompress | tar xf - .
  66.  
  67. The release area also contains source distributions and other binary
  68. distributions.  A listing of the current contents of the release area is in
  69. FILES.  Major release announcements will be made to comp.lang.lisp until there
  70. is enough volume to warrant a comp.lang.lisp.cmu.
  71.  
  72. Source availability:
  73.  
  74. Lisp and documentation sources are available via anonymous FTP ftp to any CMU
  75. CS machine.  [See the "Distribution" section for FTP instructions.]  All CMU
  76. written code is public domain, but CMU CL also makes use of two imported
  77. packages: PCL and CLX.  Although these packages are copyrighted, they may be
  78. freely distributed without any licensing agreement or fee.
  79.  
  80. The release area contains a source distribution, which is an image of all the
  81. ".lisp" source files used to build version 16e:
  82.     16e-source.tar.Z (3.6 meg)
  83.  
  84. ________________________________________________________________
  85.  
  86.                 DETAILED RELEASE NOTES
  87.  
  88. [Notes are also in doc/release-notes.txt]
  89.  
  90. March 92 PCL highlights:  (see notes.text in the sources for details)
  91.  -- This version of PCL is much closer than previous versions of PCL to the
  92.     metaobject protocol specified in "The Art of the Metaobject Protocol",
  93.     chapters 5 and 6, by Gregor Kiczales, Jim des Riveres, and Daniel G.
  94.     Bobrow.
  95.  -- You can use structure-class as a metaclass to create new classes.
  96.     Classes created this way create and evaluate defstruct forms which
  97.     have generated symbols for the structure accessors and constructor.
  98.  -- Various optimization of instance variable access, both inside and outside
  99.     of methods.
  100.  -- More work (lookups and precompilation) is done at compile and load time,
  101.     rather than run-time.
  102.  
  103.  
  104. New TRACE:
  105.  
  106. Trace has been substantially rewritten, and has a new syntax as well as new
  107. functionality:
  108.  -- Tracing of compiled functions is now implemented using breakpoints.
  109.     Breakpoints destructively modify the code object, causing all calls to the
  110.     function to be trapped, instead of only those calls that indirect through
  111.     the symbol.  This makes TRACE more useful for debugging programs that use
  112.     data structures containing function values, since you can now trace
  113.     anonymous functions and macros.  Also, the breakpoint stops the function
  114.     after the arguments have been parsed, so arguments can accessed by name in
  115.     the debugger or in TRACE options.
  116.  -- Depending on the ENCAPSULATE option and DEBUG:*TRACE-ENCAPSULATE-DEFAULT*,
  117.     encapsulation may be used instead.  This is the default for closures,
  118.     generic functions and interpreted functions.
  119.  -- TRACE options are no longer set off by extra parens, and you can specify
  120.     global trace options which affect all functions traced by a particular
  121.     call to TRACE.
  122.  -- Conditional breakpoints now work much better than before.
  123.  -- *DEBUG-PRINT-LEVEL*, -LENGTH* are used instead of a separate
  124.     *TRACE-PRINT-LEVEL*, etc.
  125.  
  126. Here is the documentation string (see also the hardcopy/info documentation):
  127.    TRACE {Option Global-Value}* {Name {Option Value}*}*
  128.    TRACE is a debugging tool that prints information when specified functions
  129.    are called.  In its simplest form:
  130.        (trace Name-1 Name-2 ...)
  131.  
  132.    TRACE causes a printout on *TRACE-OUTPUT* each time that one of the named
  133.    functions is entered or returns (the Names are not evaluated.)  The output
  134.    is indented according to the number of pending traced calls, and this trace
  135.    depth is printed at the beginning of each line of output.
  136.  
  137.    Options allow modification of the default behavior.  Each option is a pair
  138.    of an option keyword and a value form.  Options may be interspersed with
  139.    function names.  Options only affect tracing of the function whose name they
  140.    appear immediately after.  Global options are specified before the first
  141.    name, and affect all functions traced by a given use of TRACE.
  142.  
  143.    The following options are defined:
  144.  
  145.    :CONDITION Form
  146.    :CONDITION-AFTER Form
  147.    :CONDITION-ALL Form
  148.        If :CONDITION is specified, then TRACE does nothing unless Form
  149.        evaluates to true at the time of the call.  :CONDITION-AFTER is
  150.        similar, but suppresses the initial printout, and is tested when the
  151.        function returns.  :CONDITION-ALL tries both before and after.
  152.  
  153.    :WHEREIN Names
  154.        If specified, Names is a function name or list of names.  TRACE does
  155.        nothing unless a call to one of those functions encloses the call to
  156.        this function (i.e. it would appear in a backtrace.)  Anonymous
  157.        functions have string names like "DEFUN FOO".
  158.  
  159.    :BREAK Form
  160.    :BREAK-AFTER Form
  161.    :BREAK-ALL Form
  162.        If specified, and Form evaluates to true, then the debugger is invoked
  163.        at the start of the function, at the end of the function, or both,
  164.        according to the respective option.
  165.  
  166.    :PRINT Form
  167.    :PRINT-AFTER Form
  168.    :PRINT-ALL Form
  169.        In addition to the usual prinout, he result of evaluating Form is
  170.        printed at the start of the function, at the end of the function, or
  171.        both, according to the respective option.  Multiple print options cause
  172.        multiple values to be printed.
  173.  
  174.    :FUNCTION Function-Form
  175.        This is a not really an option, but rather another way of specifying
  176.        what function to trace.  The Function-Form is evaluated immediately,
  177.        and the resulting function is traced.
  178.  
  179.    :ENCAPSULATE {:DEFAULT | T | NIL}
  180.        If T, the tracing is done via encapsulation (redefining the function
  181.        name) rather than by modifying the function.  :DEFAULT is the default,
  182.        and means to use encapsulation for interpreted functions and funcallable
  183.        instances, breakpoints otherwise.  When encapsulation is used, forms are
  184.        *not* evaluated in the function's lexical environment, but DEBUG:ARG can
  185.        still be used.
  186.  
  187.    :CONDITION, :BREAK and :PRINT forms are evaluated in the lexical environment
  188.    of the called function; DEBUG:VAR and DEBUG:ARG can be used.  The -AFTER and
  189.    -ALL forms are evaluated in the null environment.
  190.  
  191.  
  192. Assorted bug fixes and enhancements:
  193.  
  194. System code:
  195.  -- Changed default base file name for LOAD-FOREIGN to be argv[0] rather than
  196.     being hard-wired to "lisp".
  197.  -- Fixed a bad declaration which caused garbage collection to fail if more
  198.     than MOST-POSITIVE-FIXNUM bytes had been consed since process creation.
  199.  -- Changed GET-INTERNAL-RUN-TIME to use UNIX-FAST-GETRUSAGE to avoid
  200.     number-consing and generic arithmetic.  Also, rearranged the computation
  201.     so that the time is correctly computed for up to 457 days, instead of only
  202.     71 minutes.
  203.  -- Merged Miles' fix to MAKE-PATHNAME so that it knows the difference between 
  204.     an arg being NIL and being unsupplied.
  205.  -- Some partial fixes to circular printing (the #1=#1# bug).
  206.     PPRINT-LOGICAL-BLOCK no longer checks the list argument for CAR
  207.     circularity, now that OUTPUT-OBJECT does it for us.
  208.  -- Fixed reader dispatch macro characters to be case-insensitive, and to
  209.     disallow digits as sub-characters.
  210.  -- Changed #A reader to allow arbitrary sequences instead of just lists.
  211.  -- RUN-PROGRAM now gives a proper error message when "fork" fails (i.e. too
  212.  -- Fixed a bug in initialization of saved cores which caused the old
  213.     environment to be left on the end of EXT:*ENVIRONMENT-LIST*.  One symptom
  214.     was that RUN-PROGRAM would run programs with strange environment values
  215.     based on those in effect at the time the core was saved.  In particular,
  216.     Lisp subprocesses (i.e. Hemlock slaves) might get the wrong value of
  217.     CMUCLLIB, which caused the slave to die before connecting.
  218.  -- SYSTEM:SERVE-EVENT (and XLIB:EVENT-CASE, etc.) now correctly handle
  219.     non-integer timeouts.  Added declarations to improve the efficiency of
  220.     event handling.
  221.  -- Fixed some bugs in UNIX-SELECT which could cause Lisp to hang when more
  222.     than 32 files were open.  Also, improved efficiency in this case.
  223.  -- Merged Olssons fix to WITH-ENABLED-INTERRUPTS to not try to change
  224.     interrupt characters anymore.
  225.  -- A number of bug-fixes for breakpoint support in compiled code (but there
  226.     are still problems with arbitrary breakpoints.)
  227.  -- Fixed DI:FRAME-CATCHES
  228.  
  229. CLX:
  230.  -- Fixed the implementation-dependent pixarray copying routines (for
  231.     GET-IMAGE, etc.) so that they don't occasionally trash memory, and are
  232.     actually faster.
  233.  -- Fixed the definition of the ANGLE type (used by DRAW-ARC, etc.) to work
  234.     regardless of the kind of real number (single or double float, rational,
  235.     etc.)
  236.  -- Fixed several places in image operations where values that could really
  237.     be negative were declared to be non-negative.
  238.  
  239. Compiler:
  240.  -- Fixed a bug which caused an internal error whenever a call to random
  241.     was compiled and the argument type wasn't known to be either a float or
  242.     an integer.
  243.  -- Fixed a bug which caused an internal compiler error when a value that
  244.     wasn't used had an unproven type assertion.
  245.  -- Fixed some more dead-code deletion bugs.
  246.  -- Fixed a problem with the new "assignment" optimization of local function
  247.     call where the compiler could get assertion failures such as tail-sets not
  248.     being equal.
  249.  -- Fixed a few places where reoptimization wasn't being triggered when it
  250.     should have been.
  251.  -- You can now have a TAGBODY with more than one tag that is non-locally
  252.     exited to.  Evidently this never worked...
  253.  -- Some changes in debug-info format related to breakpoint support.
  254.  
  255. Misc:
  256.  -- Fixed some Hemlock Dired commands to know that PATHNAME-DIRECTORY is
  257.     now a list, not a vector.
  258.  -- Fixed the bin/sample-wrapper script to use "$@" instead of $* so that
  259.     arguments are properly passed through.
  260. ________________________________________________________________
  261.  
  262. Sun Release 4.1                                                 1
  263.  
  264. CMUCL(1)                 USER COMMANDS                   CMUCL(1)
  265.  
  266.  
  267.  
  268. NAME
  269.      CMU Common Lisp
  270.  
  271.  
  272. DESCRIPTION
  273.      CMU Common Lisp is public domain "industrial strength"  Com-
  274.      mon Lisp programming environment.  Many of the X3j13 changes
  275.      have been incorporated into CMU CL.  Wherever possible, this
  276.      has  been  done  so  as to transparently allow use of either
  277.      CLtL1 or proposed ANSI CL.  Probably the new  features  most
  278.      interesting  to users are SETF functions, LOOP and the WITH-
  279.      COMPILATION-UNIT macro.
  280.  
  281.  
  282. HARDWARE REQUIREMENTS
  283.      CMU CL is currently available for Sparcstations and  DECsta-
  284.      tions (pmaxes) running Mach (or OSF/1).  We are beta-testing
  285.      a SunOS SPARC version and an IBM RT Mach version.  At  least
  286.      16  megabytes  of  memory and 25 megabytes of disk space are
  287.      recommended.  As usual, more is better.
  288.  
  289.  
  290. OVERVIEW
  291.      When compared other Common Lisp implementations, CMU CL  has
  292.      two broad advantages:
  293.  
  294.      -- The new CMU CL compiler (Python)  is  more  sophisticated
  295.         than  other  Common  Lisp  compilers.   It  both produces
  296.         better code and is easier to use.
  297.  
  298.      -- The programming environment based on the  Hemlock  editor
  299.         is  better  integrated than gnu-emacs based environments.
  300.         (Though you can still use GNU if you want.)
  301.  
  302.      CMU CL also has significant non-technical advantages:
  303.  
  304.      -- It has good local support for  CMU  users,  and  is  well
  305.         integrated with the CMU CS environment.
  306.  
  307.      -- It is public domain, and is freely available  to  non-CMU
  308.         sites  that  aren't  able  to afford a site-license for a
  309.         commercial Lisp.
  310.  
  311.  
  312.  
  313. COMPILER FEATURES
  314.      The `Advanced Compiler' chapter of the User's manual  exten-
  315.      sively  discusses  Python's  optimization  capabilities (See
  316.      DOCUMENTATION below.)  Here are a few high points:
  317.  
  318.      -- Good efficiency and type-checking at the same time.  Com-
  319.         piling code safe gives a 2x speed reduction at worst.
  320.  
  321.      -- In safe code, type declarations  are  verified,  allowing
  322.         declarations to be debugged in safe code.  When you go to
  323.         compile unsafe, you know the declarations are right.
  324.  
  325.      -- Full source level debugging of compiled  code,  including
  326.         display of the exact call that got an error.
  327.  
  328.      -- Good efficiency notes that  tell  you  why  an  operation
  329.         can't  be open coded or where you are number-consing, and
  330.         that provide unprecedented source context
  331.  
  332.      -- Block compilation, partial evaluation, lightweight  func-
  333.         tions  and  proper  tail-recursion  allow low-cost use of
  334.         function call abstraction.
  335.  
  336. TYPE SUPPORT
  337.      Important note: Even  debugged  programs  may  contain  type
  338.      errors that remain undetected by other compilers.  When com-
  339.      piled with type checking suppressed  using  the  CMU  Common
  340.      Lisp  compiler,  these  type  errors may cause said debugged
  341.      programs  to  die  strangely.   If  type  checking  is   not
  342.      suppressed,  these  programs  will die with an explicit type
  343.      error.
  344.  
  345.      The most visible way in which Python differs  from  previous
  346.      Common  Lisp  compilers  is  that it has a greater knowledge
  347.      about types and a different approach to type  checking.   In
  348.      particular, Python implements type checking which is `eager'
  349.      and `precise':
  350.  
  351.      -- Eager in the sense that type checking is done immediately
  352.         whenever  there  is  a  declaration,  rather  than  being
  353.         delayed until the the value is actually used.  For  exam-
  354.         ple:
  355.             (let ((x ...))
  356.               (declare (fixnum x))
  357.               ...)
  358.         Here, the type of the initial value of X must be a FIXNUM
  359.         or an error will be signalled.
  360.  
  361.      -- Precise in the sense that the  exact  type  specified  is
  362.         checked.  For example, if a variable is declared to be of
  363.         type (integer 3 7), then the  value  must  always  be  an
  364.         integer between 3 and 7.
  365.  
  366.      Since Python does more type  checking,  programs  that  work
  367.      fine  when compiled with other compilers may get type errors
  368.      when compiled with Python.  It  is  important  to  initially
  369.      compile  programs  with  the default (safe) policy, and then
  370.      test this version.  If a program with an erroneous  declara-
  371.      tion  is  compiled with type checking suppressed (due to the
  372.      SAFETY optimize quality being reduced), then the type  error
  373.      may  cause obscure errors or infinite looping.  See the sec-
  374.      tion `Getting Existing Programs to Run' (6.6)  in  the  com-
  375.      piler chapter of the user manual.
  376.  
  377.      CMU CL adheres to the X3J13  function  type  cleanup,  which
  378.      means that quoted lambda-lists are not of type FUNCTION, and
  379.      are no longer directly callable.  Use COERCE with the  FUNC-
  380.      TION result type.
  381.  
  382.  
  383. OPTIMIZATION
  384.      Python does many optimizations that are absent or less  gen-
  385.      eral  in other Common Lisp compilers: Proper tail recursion,
  386.      lightweight  function  call,   block   compilation,   inter-
  387.      procedural  type  inference,  global  flow analysis, dynamic
  388.      type inference, global  register  allocation,  stack  number
  389.      allocation,  control  optimization,  integer range analysis,
  390.      enhanced inline expansion, multiple value  optimization  and
  391.      source-to-source transforms.
  392.  
  393.      Optimization and type-checking are controlled by the  OPTIM-
  394.      IZE  declaration.   The  default compilation policy is type-
  395.      safe.
  396.  
  397.  
  398. NUMERIC SUPPORT
  399.      Python is particular good at number crunching:
  400.  
  401.      -- Good inline coding of float and  32  bit  integer  opera-
  402.         tions,  with  no  number  consing.  This includes all the
  403.         hardware primitives ROUND, TRUNCATE, COERCE, as  well  as
  404.         important   library  routines  such  as  SCALE-FLOAT  and
  405.         DECODE-FLOAT.  Results that don't fit in registers go  on
  406.         a special number stack.
  407.  
  408.      -- Full support for IEEE single and  double  (denorms,  +-0,
  409.         etc.)
  410.  
  411.      -- In block compiled code, numbers are  passed  as  function
  412.         arguments  and  return  values  in registers (and without
  413.         number consing.)
  414.  
  415.      -- Calls to library functions (SIN, ...) are optimized to  a
  416.         direct  call  to  the  C  library routine (with no number
  417.         consing.)  On hardware with direct support for such func-
  418.         tions, these operations can easily be open-coded.
  419.  
  420.      --  Substantially better bignum performance than  commercial
  421.         implementations  (2x-4x).   Bignums  implemented  in lisp
  422.         using word integers, so you can roll your own.
  423.  
  424.      Python's compiler warnings and efficiency  notes  are  espe-
  425.      cially  valuable  in  numeric  code.   50+ pages in the user
  426.      manual describe Python's capabilities in more detail.
  427.  
  428.  
  429.  
  430. THE DEBUGGER
  431.      In addition to a basic command-line interface, the  debugger
  432.      also has several powerful new features:
  433.  
  434.      -- The "source" and "vsource" commands print  the  *precise*
  435.         original source form responsible for the error or pending
  436.         function call.  It is no longer necessary to guess  which
  437.         call to CAR caused some "not a list" error.
  438.  
  439.      -- Variables in compiled code can be accessed  by  name,  so
  440.         the  debugger  always  evaluates  forms  in  the  lexical
  441.         environment of the current frame.  This  variable  access
  442.         is  robust  in  the presence of compiler optimization ---
  443.         although higher levels of optimization may make  variable
  444.         values  unavailable  at  some locations in the variable's
  445.         scope, the debugger always errs on the  side  of  discre-
  446.         tion, refusing to display possibly incorrect values.
  447.  
  448.      -- Integration with the Hemlock editor.   In  a  slave,  the
  449.         "edit"  command causes the editor edit the source for the
  450.         current code location.  The editor  can  also  send  non-
  451.         line-mode  input  to  the  debugger using C-M-H bindings.
  452.         Try apropos "debug" in Hemlock.
  453.  
  454.      See the  debugger  chapter  in  the  user  manual  for  more
  455.      details.   We  are  working on integrating the debugger with
  456.      Hemlock and X windows.
  457.  
  458.  
  459. THE INTERPRETER
  460.      As far as Common Lisp semantics are concerned, there  is  no
  461.      interpreter;  this is effectively a compile-only implementa-
  462.      tion.  Forms typed to the read-eval-print loop or passed  to
  463.      EVAL  are in effect compiled before being run.  In implemen-
  464.      tation, there is an interpreter,  but  it  operates  on  the
  465.      internal representation produced by the compiler's font-end.
  466.  
  467.      It is not recommended that programs be debugged  by  running
  468.      the whole program interpreted, since Python and the debugger
  469.      eliminate the main reasons for debugging  using  the  inter-
  470.      preter:
  471.  
  472.      -- Compiled code does much more error checking  than  inter-
  473.         preted code.
  474.  
  475.      -- It is as easy to debug compiled code as interpreted code.
  476.  
  477.      Note that the debugger does not  currently  support  single-
  478.      stepping.  Also, the interpreter's pre-processing freezes in
  479.      the macro definitions in effect at the time  an  interpreted
  480.      function  is  defined.   Until we implement automatic repro-
  481.      cessing when macros are redefined, it is  necessary  to  re-
  482.      evaluate  the definition of an interpreted function to cause
  483.      new macro definitions to be noticed.
  484.  
  485.  
  486. DOCUMENTATION
  487.      The CMU CL documentation is printed as tech reports, and  is
  488.      available (at CMU) in the document room:
  489.  
  490.  
  491.        CMU Common Lisp User's Manual
  492.        Hemlock User's Manual
  493.        Hemlock Command Implementor's Manual
  494.  
  495.      Non-CMU users may get documentation from the doc/  directory
  496.      in the binary distribution:
  497.  
  498.      cmu-user.info
  499.                CMU CL User's Manual  in  Gnu  Info  format.   The
  500.                ``cmu-user.info-<N>'' files are subfiles.  You can
  501.                either have your EMACS maintainer install this  in
  502.                the   info   root,   or   you  can  use  the  info
  503.                ``g(...whatever.../doc/cmu-user.info)'' command.
  504.  
  505.      cmu-user.ps
  506.                The CMU CL User's Manual (148 pages) in postscript
  507.                format.   LaTeX  source  and DVI versions are also
  508.                available.
  509.  
  510.      release-notes.txt
  511.                Information on the changes between releases.
  512.  
  513.      hemlock-user.ps
  514.                Postscript version of the  Hemlock  User's  Manual
  515.                (124 pages.)
  516.  
  517.      hemlock-cim.ps
  518.                Postscript  version   of   the   Hemlock   Command
  519.                Implementor's Manual (96 pages).
  520.  
  521. SUPPORT
  522.      Bug reports should be sent to cmucl-bugs@cs.cmu.edu.  Please
  523.      consult  your  local CMU CL maintainer or Common Lisp expert
  524.      to verify that the problem really is a bug before sending to
  525.      this list.
  526.  
  527.      We have insufficient staffing to provide  extensive  support
  528.      to people outside of CMU.  We are looking for university and
  529.      industrial affiliates to help us with  porting  and  mainte-
  530.      nance  for  hardware and software that is not widely used at
  531.      CMU.
  532.  
  533.  
  534. DISTRIBUTION
  535.      CMU Common Lisp is a public domain implementation of  Common
  536.      Lisp.  Both sources and executables are freely available via
  537.      anonymous FTP; this software is "as is", and has no warranty
  538.      of  any  kind.  CMU and the authors assume no responsibility
  539.      for the consequences of any use of this software.   See  the
  540.      README file in the distribution for FTP instructions.
  541.  
  542.  
  543. ABOUT THE CMU COMMON LISP PROJECT
  544.      Organizationally, CMU Common Lisp is a small,  mostly  auto-
  545.      nomous  part  within the Mach operating system project.  CMU
  546.      CL is more of a tool development effort than a research pro-
  547.      ject.  The project started out as Spice Lisp, which provided
  548.      a modern Lisp implementation for use in the  CMU  community.
  549.      CMU CL has been under continuous development since the early
  550.      1980's (concurrent  with  the  Common  Lisp  standardization
  551.      effort.)
  552.  
  553.      CMU CL is funded by DARPA under CMU's "Research on  Parallel
  554.      Computing"  contract.   Rather  than  doing pure research on
  555.      programming languages and  environments,  our  emphasis  has
  556.      been  on  developing practical programming tools.  Sometimes
  557.      this has required new technology, but much of the  work  has
  558.      been in creating a Common Lisp environment that incorporates
  559.      state-of-the-art features from existing systems  (both  Lisp
  560.      and non-Lisp.)
  561.  
  562.      Because sources are freely available, CMU  Common  Lisp  has
  563.      been  ported  to  experimental hardware, and used as a basis
  564.      for research in programming language  and  environment  con-
  565.      struction.
  566.  
  567.  
  568. SEE ALSO
  569.      lisp(1), README
  570.      The ``CMU Common Lisp User's Manual'',
  571.      the ``Hemlock User's Manual'', and
  572.      the ``Hemlock Command Implementor's Manual''
  573.