- 06 Oct, 2014 2 commits
-
-
-
MVN-VERSION now tries harder to include diagnostic information when it signals an error. Fixes <http://abcl.org/trac/ticket/372>.
-
- 03 Oct, 2014 1 commit
-
-
- 09 Sep, 2014 1 commit
-
-
Thanks to Cyrus Harmon. Fixes <http://abcl.org/trac/ticket/368> in support of not needing the ugliness of <https://github.com/easye/cffi/commit/03624e609cd48cc065bd15c8dcea715f287b6bbc>.
-
- 26 Aug, 2014 1 commit
-
-
Renormalize whitespace. Previous commit addressed formating JSS:NO-SUCH-JAVA-FIELD invocation.
-
- 25 Aug, 2014 1 commit
-
-
- 19 Aug, 2014 3 commits
-
-
- 17 Aug, 2014 5 commits
-
-
Run the failing tests via CL-USER> (asdf:load-system :abcl) (asdf:test-system :abcl-test-lisp) c.f. <http://abcl.org/trac/ticket/330> and <http://abcl.org/trac/ticket/346>. Start editing documentation for JNEW-RUNTIME-CLASS. Add failing tests for cases that should work, indicating that we have basic problems with the code at this point.
-
-
-
Thanks to Robert Goldman. <http://abcl.org/trac/ticket/362>
-
Thanks to Eduardo Bellani. <http://abcl.org/trac/ticket/364>
-
- 05 Aug, 2014 1 commit
-
-
- 29 Jul, 2014 1 commit
-
-
Robert Goldman contributes in <http://abcl.org/trac/ticket/362>: GET-JAVA-FIELD, when its optional TRY-HARDER argument is NIL, will return any public field on its argument object, whether defined locally or inherited. When TRY-HARDER argument is true, on the other hand, it will return non-public fields as well as public ones but only non-public fields that are defined locally -- not non-public fields that are inherited. This non-orthogonality seems wrong (just read the contorted description above and imagine it as a docstring!). I am attaching a proposed patch which searches up the class hierarchy to find inherited non-public fields when TRY-HARDER is true.
-
- 18 Jul, 2014 1 commit
-
-
changeset: 2488:0a1ded36af37 bookmark: master tag: default/master tag: tip user: Francois-Rene Rideau <tunes@google.com> summary: Tweak the debian changelog.
-
- 17 May, 2014 1 commit
-
-
- 10 May, 2014 1 commit
-
-
- 30 Apr, 2014 1 commit
-
-
- 27 Apr, 2014 1 commit
-
-
From a patch for OpenBSD provided by Timo Myyrä.
-
- 25 Apr, 2014 2 commits
-
-
-
We now convert CL:T and CL:NIL to JAVA:+TRUE+ and JAVA:+FALSE+ respectively when invoking JVM methods through the JAVA package, establishing the "natural" equivalence for boolean truth values. This may break some existing usage in that previously CL:NIL was converted to a Java 'null' reference. Users now need to specify JAVA:+NULL+ explicitly when desiring to pass 'null' Java references as an argument in invoking JVM methods. Addresses <http://abcl.org/trac/ticket/84> (#84) and <http://abcl.org/trac/ticket/339> (#339).
-
- 22 Apr, 2014 2 commits
-
-
With archives packages under 'WEB-INF/resources', placing these jar files in the 'WEB-INF/lib' directory enables the Java Servlet ServletContext().getResourceAsStream() method to access their contents.
-
Improved documenation strings in threads package.
-
- 18 Apr, 2014 1 commit
-
-
From Olof.
-
- 17 Apr, 2014 7 commits
-
-
-
-
A reimplementation of org.apache.commons.lang.ClassUtils.isAssignable instead of the standard isAssignableFrom test. <http://abcl.org/trac/ticket/352> . From Olof.
-
-
Non-zero timeouts CL:SLEEP and THREADS:OBJECT-WAIT below the timer Planck limit interpolated as a nanosecond. Thanks for James Lawrence for the consul. Addresses #14632.
-
-
Assume ASDF has been configured by using the <file:~/.config/common-lisp/source-registry.conf.d/> DSL.
-
- 12 Apr, 2014 1 commit
-
-
32 out of 286 total tests failed: FUNCALL.F-S-P.1, CALLBACKS.LONG, CALLBACKS.UNSIGNED-LONG, CALLBACKS.LONG-LONG, CALLBACKS.UNSIGNED-LONG-LONG, CALLBACKS.POINTER, CALLBACKS.STRING-NOT-DOCSTRING, CALLBACKS.NIL-FOR-NULL, CALLBACKS.FUNCALL.1, CALLBACKS.FUNCALL.2, CALLBACKS.DOUBLE26.FUNCALL, CALLBACKS.FLOAT26.FUNCALL, FOREIGN-GLOBALS.NAMESPACE.1, FOREIGN-GLOBALS.NAMESPACE.2, FOREIGN-GLOBALS.NAMESPACE.4, MAKE-POINTER.HIGH, FOREIGN-ALLOC.1, FOREIGN-ALLOC.2, FOREIGN-ALLOC.3, FOREIGN-ALLOC.4, FOREIGN-ALLOC.6, FOREIGN-ALLOC.8, FOREIGN-ALLOC.9, NULL-POINTER-P.NON-POINTER.1, NULL-POINTER-P.NON-POINTER.2, NULL-POINTER-P.NON-POINTER.3, STRUCT-VALUES-DEFAULT.TRANSLATION.MEM-REF.1, STRUCT-VALUES-DEFAULT.TRANSLATION.MEM-REF.2, FSBV.2, FSBV.3, FSBV.4, FSBV.7. 32 unexpected failures: FUNCALL.F-S-P.1, CALLBACKS.LONG,
-
- 25 Mar, 2014 2 commits
-
-
Under Windows (at least), one has to specifiy "-Djava.library.path=something" after the -classpath option for it to have any effect.
-
Seems to fix loading of Ironclad, and other Quicklisp failures.
-
- 24 Mar, 2014 4 commits
-
-
-
DIRECTORY now works again on UNC paths. UNC paths may be either specified with either back slash (#\\) or forward slash (#\/) doubled as the first character in a Pathname namestring. The patterns in //<server>/<share>/[directories-and-files] are parsed as <server> is stored as HOST. <share> is stored as DEVICE. [directories-and-files] gets parsed as per the normal rules under Windows. Mixing namestrings with both backslash and slash characters can lead to unpredictable results. It is recommended not to use backslash characters in namestrings if it can be avoided. The pathname printed representation is always normalized to using forward slash delimiters.
-
-
From Olof-Joachim Frahm.
-