Skip to content
Snippets Groups Projects
  1. Dec 04, 2016
  2. Dec 03, 2016
  3. Dec 02, 2016
    • Raymond Toy's avatar
      Apply cmucl style · 7e4f7eb9
      Raymond Toy authored
      ieee754_rem_pio2 was not formatted according to cmucl style.  Just
      re-indent. No other changes.
      7e4f7eb9
  4. Dec 01, 2016
  5. Nov 30, 2016
  6. Nov 29, 2016
    • Raymond Toy's avatar
      f09db6e5
    • Raymond Toy's avatar
      Minor cosmetic tweaks · 05585b8d
      Raymond Toy authored
      o Include math.h before netdb.h (from Carl)
      o Use ceil instead of trunc and add comment on why.
      o Conform to cmucl style.
      05585b8d
    • Raymond Toy's avatar
      Fix #26: Use nanosleep to sleep · e5777ecb
      Raymond Toy authored
      lisp/os-common.c:
      o Implement os_sleep(double) to sleep for the given number of
        seconds.  Uses nanosleep on all platforms to sleep, taking care to
        sleep more if nanosleep was interrupted.
      
      code/lispinit.lisp:
      code/multi-proc.lisp:
      o Use the new os_sleep function to sleep for the requested amount of
        time.
      e5777ecb
  7. Nov 11, 2016
  8. Oct 09, 2016
  9. Oct 08, 2016
  10. Oct 05, 2016
  11. Oct 01, 2016
  12. Sep 28, 2016
  13. Sep 27, 2016
  14. Sep 26, 2016
    • Raymond Toy's avatar
      Remove :before-execve option · 47b1e69b
      Raymond Toy authored
      The documentation for this keyward option to run-program was
      commented, but the actual option was not removed from the list of
      options for run-program.
      
      Remove it.
      47b1e69b
    • Raymond Toy's avatar
      Don't try to get the lambda-expression for a function · 94259938
      Raymond Toy authored
      Since we're just going to return the original compiled function,
      there's no point in trying to get the function-lambda-expression of
      the function.  So, if we're given a function, just return the
      (default) definition.
      94259938
  15. Sep 19, 2016
    • Raymond Toy's avatar
      Fix #29: Update processing of command line · d9090138
      Raymond Toy authored
      Several related changes here.
      
      o If :process-command-line is NIL, *command-line-strings* and
        *command-line-application-arguments* weren't getting updated.  They
        should get updated so that the resulting core can get updated
        command line options instead of using the values dumped with the
        core.  The command line switch demons are still not run, as before.
      o Add a :quiet option as if -quiet were given.
      d9090138
  16. Sep 10, 2016
  17. Sep 08, 2016
    • Raymond Toy's avatar
      Fix #30: compilation of (describe 'foo) · 53fe0a4f
      Raymond Toy authored
      The debug-info-source isn't available until later in the fasl, so
      don't try to print where the source was compiled from.  This seems
      like a small oversight since the next bit of code does nothing if the
      debug-info-source isn't available.
      53fe0a4f
  18. Sep 05, 2016
  19. Sep 04, 2016
    • Raymond Toy's avatar
      37c549c6
    • Raymond Toy's avatar
      Fix #27: PATHNAME-MATCH-P loops for logical pathnames · c07cad4b
      Raymond Toy authored
      When support for search-lists was added to PATHNAME-MATCH-P, support
      for logical pathnames was broken because PATHNAME-MATCH-P eventually
      calls TRANSLATE-LOGICAL-PATHNAME which calls PATHNAME-MATCH-P with
      logical pathnames.  This caused infinite recursion.
      
      So add back the original PATHNAME-MATCH-P, but rename to
      %PATHNAME-MATCH-P and use that in TRANSLATE-LOGICAL-PATHNAME and
      friends.
      
      Add test for this case too.
      c07cad4b
Loading