source: trunk/abcl/src/org/armedbear/lisp

Revision Log Mode:


Legend:

Added
Modified
Copied or renamed
Diff Rev Age Author Log Message
(edit) @12356   15 years ehuelsmann Make LispClass?.addClass return the added class, for convenience.
(edit) @12355   15 years Mark Evenson Add missing documentation annotations (" ###") for Primitives.
(edit) @12353   15 years astalla Removed unchecked warning.
(edit) @12352   15 years astalla Have JavaObject?.javaInstance(c) complain if the wrapped object is null …
(edit) @12351   15 years astalla Fixed regression with JavaObject?.javaInstance(Class) and primitive types.
(edit) @12350   15 years astalla Added constructor.
(edit) @12345   15 years astalla Use of the "intended class" of an object before the actual class to …
(edit) @12344   15 years astalla Fixed loading of compressed FASLs (.abcl) from jar files when the FASL …
(edit) @12342   15 years vvoutilainen Convert LispErrors? to ProgramErrors?, convert a couple of asserts to …
(edit) @12340   15 years ehuelsmann Fix symbol-macrolet expanding variables declared in a lambda-list for …
(edit) @12339   15 years astalla Removed aggressive installation of preloaded functions that caused …
(edit) @12334   15 years astalla Added convenience constructors to Stream.
(edit) @12332   15 years astalla Small change in an exception message.
(edit) @12331   15 years astalla Cleanup in readFunctionBytes (Lisp.java), possibility to load compiled …
(edit) @12330   15 years ehuelsmann Fix ticket #77: incorrect encoding used for FASLs, by always using UTF-8.
(edit) @12329   15 years ehuelsmann More notes about potential codepoint conversion bugs.
(edit) @12328   15 years ehuelsmann Note a few codepoint to char conversions which are potential bugs.
(edit) @12327   15 years ehuelsmann Note 2 bugs in RandomAccessCharacterFile? so the fact doesn't get forgotten.
(edit) @12326   15 years ehuelsmann Performance improvement for ticket #76: slow swank fuzzy completion. …
(edit) @12325   15 years ehuelsmann Create API for (SETF (STREAM-EXTERNAL-FORMAT ...) ...) from the lisp world.
(edit) @12324   15 years ehuelsmann In case a redefinition warning shouldn't be issued if the function …
(edit) @12323   15 years ehuelsmann Implement setting of external format on a stream; only supported on …
(edit) @12322   15 years ehuelsmann Follow up to r12321; changes resulting from more testing.
(edit) @12321   15 years ehuelsmann Fix ticket #75: infinite loop while writing unmappable characters to …
(edit) @12320   15 years ehuelsmann Print StreamErrors? with a readable text, even when created based on …
(edit) @12319   15 years ehuelsmann Fix line numbers from COMPILE-FILE being off. Fixes ticket #71.
(edit) @12318   15 years ehuelsmann Remove trailing spaces/tabs which light my editing buffers red.
(edit) @12317   15 years ehuelsmann Change the properties of RandomAccessCharacterFile? to the standard ones.
(edit) @12316   15 years ehuelsmann Return the actual external format, instead of a default value from …
(edit) @12315   15 years astalla Implemented (setf jfield).
(edit) @12314   15 years ehuelsmann Upon OutOfMemoryError? or StackOverflowError?, unwind the stack to the …
(edit) @12313   15 years ehuelsmann Fix LOAD-TIME-VALUE instability introduced by r12306, best seen as …
(edit) @12312   15 years ehuelsmann Add a function interface to test whether the interpreter is already …
(edit) @12311   15 years ehuelsmann Followup to r12306: "unbreak" Slime, at least partially.
(edit) @12310   15 years ehuelsmann Implement note 1 from r12306: function preloading for macros.
(edit) @12309   15 years ehuelsmann Turn an inline named class name into a string constant.
(edit) @12306   15 years ehuelsmann Land fast-boot-preloading branch on trunk. Note: things to do include …
(edit) @12304   15 years astalla Refinement: better error message when an applicable constructor cannot …
(edit) @12303   15 years astalla Extended the new smart behavior of jcall to jnew: (jnew class-name …
(edit) @12302   15 years astalla Applied Yoshinori Tahara's patch that allows jcall to invoke the …
(edit) @12299   15 years ehuelsmann Annotate some remaining "catch (Throwable" occurrences. While at it: …
(edit) @12298   15 years ehuelsmann Full source scan of "catch (Throwable"; remove lots of instances, or …
(edit) @12291   15 years Mark Evenson Ant-based build process now records FASL source locations correctly. …
(edit) @12290   15 years vvoutilainen Remove LispTrampolinesFile? and all references to it.
(edit) @12289   15 years vvoutilainen Add missing file.
(edit) @12288   15 years vvoutilainen Don't extend Lisp in LispObject, static import Lisp wherever …
(edit) @12287   15 years vvoutilainen Make LispObject.push() final.
(edit) @12286   15 years vvoutilainen LispObject.car() should use instanceof to check for nil, as cdr() does.
(edit) @12285   15 years vvoutilainen Make NUMBERP/LISTP/etc. type query functions final in LispObject. …
(edit) @12284   15 years ehuelsmann Delete unused function (split-directory-components).
(edit) @12283   15 years ehuelsmann Fix logical pathname translation issue reported by Thomas Russ.
(edit) @12282   15 years ehuelsmann Fix PRINT-LEVEL.* tests all of which were related to *PRINT-LEVEL* …
(edit) @12281   15 years ehuelsmann Fix a memory leak for objects-with-documentation going out of scope, …
(edit) @12280   15 years ehuelsmann Fix special bindings in case a symbol is bound to its own value, …
(edit) @12279   15 years ehuelsmann Make car()/cdr()/setCar()/setCdr()/EQ() non-virtual, dispatching …
(edit) @12278   15 years ehuelsmann Add some loader process documentation.
(edit) @12276   15 years ehuelsmann Further reduce forced loading of files: TOPLEVEL will be loaded when …
(edit) @12275   15 years ehuelsmann Switch special bindings access schema to mirror that of SBCL/CCL/XCL: …
(edit) @12274   15 years ehuelsmann Convert some uses of LispObject to Symbol.
(edit) @12273   15 years ehuelsmann Set proper properties on newly added file.
(edit) @12272   15 years ehuelsmann Implement functional (declared final) interface to special bindings …
(edit) @12271   15 years ehuelsmann Add documentation to ControlTransfer? and inherit ThreadDestroyed? from …
(edit) @12256   15 years astalla Removed unnecessary ConditionThrowables?.
(edit) @12255   15 years ehuelsmann Rename ConditionThrowable? to ControlTransfer? and remove try/catch …
(edit) @12254   15 years ehuelsmann Remove 'throws ConditionThrowable?' method annotations: it's an …
(edit) @12253   15 years ehuelsmann Make ConditionThrowable? abstract: it's the parent of non-local …
(edit) @12252   15 years ehuelsmann Annotate dubious uses of ConditionThrowable? with FIXME's.
(edit) @12251   15 years astalla Fixed misuse of ConditionThrowable? to signal program errors.
(edit) @12248   15 years ehuelsmann Fix macroexpansion bug in the precompiler. Reported by: szergling at gmail
(edit) @12244   15 years astalla Implemented AbstractString?.toString() returning the Java string for …
(edit) @12242   15 years ehuelsmann Increment FASL version for 0.17 release.
(edit) @12241   15 years ehuelsmann Document getStringValue() to return the string value from string …
(edit) @12240   15 years ehuelsmann Bump trunk version number with 0.17 branched.
(edit) @12234   15 years ehuelsmann Don't create 2 fields to store/retrieve a single (cached!) value.
(edit) @12233   15 years ehuelsmann Fix paren placement and variable naming.
(edit) @12232   15 years ehuelsmann Additional *declare-inline* cases in the DECLARE-* functions.
(edit) @12230   15 years ehuelsmann More efficient startup: only autoload pprint[.lisp] if necessary.
(edit) @12229   15 years ehuelsmann Move more to functions to the autoloader, to be loaded when necessary.
(edit) @12228   15 years ehuelsmann Remove unused function (PROCESS-SPECIAL-DECLARATIONS).
(edit) @12227   15 years ehuelsmann Fix broken merge causing build breakage.
(edit) @12226   15 years ehuelsmann Binary FASL support. compile-file.lisp: Catch forms for output and …
(edit) @12225   15 years ehuelsmann Print autoloading information if the property "abcl.autoload.verbose" …
(edit) @12224   15 years ehuelsmann Make it possible to require a double-colon package separator by …
(edit) @12223   15 years ehuelsmann The Lisp class turns out to contain some static symbols too, use …
(edit) @12222   15 years ehuelsmann Centralize package creation for consistency: Create PRECOMPILER with …
(edit) @12221   15 years ehuelsmann In case a built-in error object (Condition class derivative) is passed …
(edit) @12220   15 years ehuelsmann In addition to "simple" function calls, don't make compiled cls files …
(edit) @12219   15 years ehuelsmann Remove package precompilation in boot.lisp; since we compile 99.9% …
(edit) @12218   15 years ehuelsmann Centralize package creation (in Lisp.java). This moves the creation …
(edit) @12217   15 years ehuelsmann Clean up use of RESOLVE (remove unnecessary case and replace one with …
(edit) @12216   15 years ehuelsmann Make sure the #n= and #n# reader functionality gets compiled. It's …
(edit) @12215   15 years ehuelsmann Add description of the purpose of the autoloads.lisp file. Requested …
(edit) @12214   15 years ehuelsmann Fix braekage from last commit.
(edit) @12213   15 years ehuelsmann Move the implementation of the Mutex functionality to the THREADS …
(edit) @12212   15 years ehuelsmann Correct typo in (DEFINE-INT-BOUNDS-DERIVATION MIN ...).
(edit) @12210   15 years ehuelsmann Save locally established special binding for quick access. Note: This …
(edit) @12209   15 years ehuelsmann Reduce abcl.jar by ~10% and the number of objects in it by ~13%. …
(edit) @12205   15 years ehuelsmann Fix hard crashes in BEYOND-ANSI tests. Note: Don't cheer too hard; …
(edit) @12202   15 years ehuelsmann Fix ABCL as a build-host for SBCL: Don't return "FAILURE-P" == T in …
(edit) @12196   15 years ehuelsmann Suppress unchecked warnings with arrays, because there's no other …
Note: See TracRevisionLog for help on using the revision log.