Skip to content
Snippets Groups Projects
  1. Nov 14, 2002
    • toy's avatar
      From Eric Marsden: · ef58fd80
      toy authored
      The attached patch contains mostly trivial changes, including a few
      spelling corrections, plus changes to the types of condition raised in
      various cases. The only significant change, I believe, is
      
        - MAKE-DISPATCH-MACRO-CHARACTER no longer raises an error if the
          character already was defined to be a macro character; it
          overrides the previous definition (as per a suggestion from Drew
          McDermott on cmucl-help, dated 2002-09-22).
      ef58fd80
    • toy's avatar
      Logical pathnames like "lpnhost:name.type" have directory component · 1f9b241b
      toy authored
      :ABSOLUTE instead of NIL, as required by CLHS.  (I think.)
      1f9b241b
    • toy's avatar
      Fix two loop bugs: · 7781102a
      toy authored
      o (loop for nil being the hash-keys of (make-hash-table) count t)
      o (loop for k being the hash-keys of (make-hash-table) using
        (hash-value (v1 . v2)) count t)
      
      From Gerd Moellmann.
      7781102a
  2. Nov 13, 2002
  3. Nov 12, 2002
  4. Nov 08, 2002
  5. Nov 07, 2002
  6. Nov 05, 2002
    • cracauer's avatar
      · 65f0bdc0
      cracauer authored
      Make (time ...) and the profiler do precise measuring of space
      allocation.  It will also not overflow or bomb out when consing
      amounts cross most-positive fixnum.
      
      The new profiler also has an interface to plug in your own print
      function (also dictates sorting or results).
      
      This is written on gencgc/x86 but tests indicated the fallsbacks for
      other platforms work.
      
      The dfixnum package included here is sketchy.
      65f0bdc0
  7. Nov 02, 2002
  8. Nov 01, 2002
  9. Oct 30, 2002
  10. Oct 29, 2002
  11. Oct 28, 2002
  12. Oct 27, 2002
  13. Oct 25, 2002
  14. Oct 24, 2002
  15. Oct 23, 2002
    • toy's avatar
      Fix entomotomy bug · e6655d2c
      toy authored
      subtypep-too-certain-about-satisfies-undefined-function
      
      Port over the SBCL fix.
      e6655d2c
  16. Oct 22, 2002
    • toy's avatar
      Fix for the Entomotomy bug · f50481e9
      toy authored
      numeric-types-with-empty-ranges-cause-errors
      
      We silently accept numeric types with empty ranges and treat that as
      the empty type.
      f50481e9
  17. Oct 16, 2002
    • toy's avatar
      Fix for the Entomotomy bug · dac93106
      toy authored
      atom-type-not-completely-understood-by-subtypep
      
      This is ported from the fix used by SBCL.
      dac93106
    • toy's avatar
      Fix for the Entomotomy bug · eea4908a
      toy authored
      translate-logical-pathname-fails-on-physical-pathname-namestrings
      
      When translate-logical-pathname is given a physical pathname, it's
      supposed to return the given pathname instead of signalling an error.
      eea4908a
    • toy's avatar
      Port over SBCL's fix for the Entomotomy bug · 6de3f186
      toy authored
      host-namestring-return-value-unusable
      logical-pathnames-not-externalizable
      
      host-namestring returns "" for physical pathnames when it used to
      return "Unix".  But "Unix" is a valid logical host name and "" is not.
      
      Logical pathnames weren't externalizable.  Make them so.
      6de3f186
  18. Oct 15, 2002
    • toy's avatar
      Port over SBCL's fix for the Entomotomy bug · 072200bd
      toy authored
      format-logical-block-bad-directive-error-signalling
      
      that says an error is signalled if ~W, ~_, ~<...~:>, ~I, or ~:T is
      used inside "~<..~>" (without the colon modifier on the closing
      syntax).  We signal errors now.
      072200bd
  19. Oct 14, 2002
  20. Oct 07, 2002
    • toy's avatar
      o Reinstate gray-streams support for read-sequence and write-sequence · 62c1a79b
      toy authored
        that was inadvertently deleted.  (Bug noted by Rudi Schlatte).
      o write-sequence was calling system:output-raw-bytes with the wrong
        args.  (Bug noted by Andras Simon)
      62c1a79b
    • toy's avatar
      From Gerd Moelmann, with minor additions for sparc: · 115b4086
      toy authored
      o max/min should check that a real number is given, even for the
        single-arg case instead of just returning the arg.
      115b4086
    • toy's avatar
      o Correct some spelling mistakes · 4fb3490d
      toy authored
      o Fix a few typos in code.
      o Delete a few unused symbols from various places
      o Use something better than %%RWSEQ-EOF%% for the eof marker.
      o Add target-foreign-linkage vars for the PPC and HPPA ports to aid
        cross-compilation.  (The values are very likely wrong, but they're
        not used yet.)
      
      Based on a larger patch from Eric Marsden.
      4fb3490d
  21. Oct 04, 2002
  22. Oct 02, 2002
  23. Sep 19, 2002
  24. Sep 17, 2002
    • pmai's avatar
      The recent changes which made system:without-hemlock a simple progn if · 0becdc66
      pmai authored
      Hemlock wasn't present, caused the compiler to tail-call eliminate the
      function call in signal handlers defined via define-signal-handler.
      Besides causing problems for the debugger, which now sees a foreign
      function call land frame as the top of stack, this is also confusing
      to the end user, hence we turn up the debug optimization quality to
      prevent tail-call-elimination here.
      0becdc66
Loading