#88: Predicate to distinguish between functions implemented directly in Java vs.
Lisp
-------------------------+--------------------------------------------------
Reporter: trittweiler | Owner: nobody
Type: enhancement | Status: new
Priority: minor | Milestone:
Component: java | Version:
Keywords: |
-------------------------+--------------------------------------------------
For Slime, we need a predicate to distinguish between
functions implemented in Java, and functions compiled
from Lisp. The reason is because we use different
mechanism to get at the definition: for Java functions,
we'll use TAGS, whereas for Lisp functions we will
use source-location information stored by the ABCL
compiler.
Compiled Lisp functions also end up to be of type Primitive,
so just making the Primitive class available to Lisp
won't cut it.
--
Ticket URL: <http://trac.common-lisp.net/armedbear/ticket/88>
armedbear <http://common-lisp.net/project/armedbear>
armedbear
#102: Wrapper scripts should honor CLASSPATH environment variables.
-------------------------------------------+--------------------------------
Reporter: mevenson | Owner: mevenson
Type: defect | Status: new
Priority: major | Milestone: 0.21
Component: other | Version: 1.0
Keywords: wrapper envrionment classpath |
-------------------------------------------+--------------------------------
If the UNIX shell script 'abcl', or the DOS batch script 'abcl.bat' are
executed in an envrionment where there is a variable named 'CLASSPATH'
set, at least add the entries on the classpath.
--
Ticket URL: <http://trac.common-lisp.net/armedbear/ticket/102>
armedbear <http://common-lisp.net/project/armedbear>
armedbear
#103: DOCUMENTATION doesn't seem to autoload properly
--------------------------+-------------------------------------------------
Reporter: vvoutilainen | Owner: nobody
Type: defect | Status: new
Priority: minor | Milestone: 0.22
Component: libraries | Version: 0.21
Keywords: autoload |
--------------------------+-------------------------------------------------
Here's a transcript from my repl session:
CL-USER(1): (documentation 'append 'function)
#<THREAD "interpreter" {9260EE}>: Debugger invoked on condition of type
UNDEFINED-FUNCTION
The function DOCUMENTATION is undefined.
Restarts:
0: CONTINUE Try again.
1: USE-VALUE Specify a function to call instead.
2: RETURN-VALUE Return one or more values from the call to
DOCUMENTATION.
3: TOP-LEVEL Return to top level.
[1] CL-USER(2): (documentation 'append 'function)
NIL
DOCUMENTATION seems to load after the initial error, but if
it's the first function invoked in the REPL, it doesn't seem
to quite work.
--
Ticket URL: <http://trac.common-lisp.net/armedbear/ticket/103>
armedbear <http://common-lisp.net/project/armedbear>
armedbear