- 15 Nov, 2016 1 commit
-
-
Robert Goldman authored
-
- 14 Nov, 2016 1 commit
-
-
Prior to this change, :output :interactive was identical to :output nil. See also https://bugs.launchpad.net/asdf/+bug/1638870
-
- 11 Nov, 2016 1 commit
-
-
Robert Goldman authored
-
- 09 Nov, 2016 1 commit
-
-
Robert Goldman authored
-
- 06 Nov, 2016 1 commit
-
-
Elias Pipping authored
Prior to this change, :output :interactive was identical to :output nil. See also https://bugs.launchpad.net/asdf/+bug/1638870
-
- 29 Oct, 2016 1 commit
-
-
Robert Goldman authored
-
- 26 Oct, 2016 3 commits
-
-
Robert Goldman authored
-
Robert Goldman authored
No changes to code, just some notes for the reader.
- 16 Oct, 2016 2 commits
-
-
Robert Goldman authored
-
Francois-Rene Rideau authored
Get rid of undefined-function and any clisp or ecl specific code in it in uiop/utility as well as of a lingering #-clisp in asdf/upgrade. Whatever issues previous generations of upgrade code tried to address, they happily do not apply today. Update test-sysdef-asdf to better test asdf self-upgrade.
-
- 14 Oct, 2016 1 commit
-
-
Francois-Rene Rideau authored
Make sure that bundle-op, concatenate-source-op, Makefile, make-asdf.sh, make-asdf.bat and tools/release.lisp all agree on "the" proper order of files in uiop and asdf.
-
- 12 Oct, 2016 3 commits
-
-
Elias Pipping authored
Add a test, too.
-
Elias Pipping authored
Add a test, too.
-
Elias Pipping authored
Add a test, too.
-
- 09 Oct, 2016 2 commits
-
-
Robert Goldman authored
-
Francois-Rene Rideau authored
This avoids a forward reference on sbcl/windows. Also add a comment on a use of symbol-call on ECL.
-
- 08 Oct, 2016 7 commits
-
-
Elias Pipping authored
-
Francois-Rene Rideau authored
DIRECTORY is important. It was never actually ignored, except on Allegro, on which the implementation itself handles the option. Make that explicit. The other arguments are always passed... though it's unclear whether they are heeded in all implementations, since we have :allow-other-keys t. That deserves investigation and a comment update, at some point. Also, tweak some comments.
-
Francois-Rene Rideau authored
Use explicit error checking instead.
-
Francois-Rene Rideau authored
Thanks to Elias Pipping for his help getting this commit right.
-
Francois-Rene Rideau authored
-
Francois-Rene Rideau authored
Make %run-program the alias of launch-program rather than the other way around. Rename %use-run-program to %use-launch-program. Update tests. NB: I wanted to move %run-program to backward-driver, but that won't help: since the function was never exported from uiop/run-program, it wasn't in uiop. Thanks to Elias Pipping for his help getting this commit right.
-
Elias Pipping authored
If we call it synchronously, we also need to call wait-process and close-streams. We ignore the error status because signalling a dead or non-existing process is not something that the user can avoid.
-
- 06 Oct, 2016 2 commits
-
-
Robert Goldman authored
-
In particular: - clasp does not define :ecl - use :os-unix instead of :unix - use :os-windows instead of :mswindows or :windows - use :os-macosx instead of :darwin - use :lispworks7+ instead of :lispworks7
-
- 27 Sep, 2016 1 commit
-
-
Robert Goldman authored
-
- 25 Sep, 2016 6 commits
-
-
Francois-Rene Rideau authored
-
Francois-Rene Rideau authored
-
Francois-Rene Rideau authored
Declare a FTYPE for ENSURE-PATHNAME in uiop/pathname so that CCL won't complain about a forward reference during `make load l=ccl`. SBCL insists that a type (FUNCTION (T &REST T) T) doesn't cover a function with keyword arguments, and wants either an exhaustive list of keywords and types, or a &ALLOW-OTHER-KEYS. So just say FUNCTION, to make SBCL happy, too.
-
Robert Goldman authored
-
Robert Goldman authored
The code for %POSIX-SEND-SIGNAL -- which isn't invoked on Windows anyway, was crashing on Windows build -- because of differences in function signatures on CCL Windows/other. Fixed this by simply making %POSIX-SEND-SIGNAL a stub on Windows. I couldn't remove it altogether, because deciding whether to invoke it is a decision made at run-time, not compile-time.
-
Elias Pipping authored
-
- 24 Sep, 2016 7 commits
-
-
Elias Pipping authored
Even though the LispWorks documentation says otherwise, at least on Unix, run-shell-command does not accept file streams or socket streams
-
Elias Pipping authored
-
Elias Pipping authored
-
Elias Pipping authored
-
Elias Pipping authored
ECL: terminate-process will not work with ECL 16.1.2 and earlier
-
Elias Pipping authored
-
Elias Pipping authored
Previously, a process that was killed through signal 15 could have an exit code of 15, 143, or even "sigterm"
-