- Sep 15, 2005
-
-
rtoy authored
-
- Sep 13, 2005
- Sep 12, 2005
-
-
rtoy authored
-
rtoy authored
which used to print as #p"", and with reading #p".", #p"./". code/filesys.lisp: o When parsing a unix namestring, delete any "." elements of the directory list. o If we've parsed a namestring such that the file name is ".", replace that with :name NIL and adjust the :directory component appropriately, because on Unix, "." can't be the name of a file. o Make :directory '(:relative) be printed as "./" code/pathname.lisp: o If the :directory argument to MAKE-PATHNAME contains strings with #\/, print a warning that this is not a valid element. o Remove all "."'s from a :relative directory component.
-
- Sep 09, 2005
-
-
rtoy authored
o Add -i <n> option to allow you to control whether the build <n> is interactive or not. Default is still non-interactive so the compile is logged to a file. tools/build-world.sh: o Support the -i option from build.sh (by checking to see if the envvar INTERACTIVE was set by build.sh).
-
pmai authored
-
- Sep 08, 2005
-
-
cshapiro authored
to comf.
-
- Sep 07, 2005
-
-
cshapiro authored
* Set the process group leader using setsid() on all ports. * Call sigprocmask() unmasking any signals masked by Lisp. * Make spawn() officially return a pid_t instead of an int. * Make a few minor whitespace and formatting corrections while we're at it. * Fix the includes list to eliminate compiler warnings and reflect reality.
-
- Sep 06, 2005
- Sep 05, 2005
- Aug 31, 2005
- Aug 30, 2005
-
-
rtoy authored
2004/11/09. An example illustrating the bug is: (use-package "ALIEN") (use-package "C-CALL") (def-alien-type yes_no_t (enum yes_no_t :NO :YES)) (def-alien-type nil (struct foo (arg1 yes_no_t) (arg2 yes_no_t))) (def-alien-routine "set_default_options" void (options (* (struct foo)))) Modified alien-type-translator for enum so that if the enum type is known and it's the same type as before we skip the call to (setf auxiliary-alien-type). This fixes the problem.
-
rtoy authored
-
rtoy authored
bootfiles/boot-19c.lisp: o Bootfile for 19c. compiler/byte-comp.lisp: o Make the fasl file version #x19c tools/build.sh: o Update bootfile directory to 19b. Use boot-19c.lisp to bootstrap this change.
-
- Aug 25, 2005
-
-
rtoy authored
%unary-ftruncate/double-float where the test for infinity and NaN was wrong. o When given NaN, these functions should return a quiet (non-signaling) NaN instead of returning the signaling NaN. This fixes the FRUNCATE/FFLOOR/FCEILING tests in ieeefp-tests.
-
rtoy authored
case and dispatch to the real-valued C functions in that case. This fixes some errors in the asin and acos tests from ieeefp-tests (at common-lisp.net).
-
- Aug 22, 2005
- Aug 18, 2005
-
-
rtoy authored
to a methood is wrong. Bug found by ansi-tests.
-
- Aug 17, 2005
-
-
rtoy authored
streams. (See mail to cmucl-imp on 2005-07-25 through 2005-08-03.) This basically allows arbitrary annotations to be added to pretty streams so that the annotations are "printed" at the appropriate times when the pretty stream is printed. This allows better presentation-like features in Slime and McCLIM, and is modeled on Allegro's schedule-annotation. No bootstrap file, but when load-world is run, answer 0 (use-current) to keep these changes to the pretty-stream structure.
-
rtoy authored
-
rtoy authored
10.2 and 10.4. However, we need to compile all assembly files with -traditional to concatenate tokens the way we want. (Appears to be an issue with gcc 4.0 included with Tiger.)
-
rtoy authored
Tiger (10.4) with gcc (4.x) or Jaguar (10.2) gcc (3.x). Not the best solution, but I think gcc 4 doesn't handle ## the same as gcc 3. But this allows using the default gcc on both platforms to compile CMUCL.
-
- Aug 12, 2005
- Aug 04, 2005
-
-
rtoy authored
error object didn't include a value for the cell-error-name. Fix this by defining a separate function for each special form in CMUCL and making it the symbol-function for the symbol. (Previously, it was just the same function for all symbols.) Could we do something better than this?
-
- Aug 02, 2005
-
-
rtoy authored
-
- Aug 01, 2005
- Jul 26, 2005