- Timestamp:
- 01/10/12 20:11:27 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/abcl/src/org/armedbear/lisp/LispObject.java
r13521 r13750 659 659 } 660 660 if(docType == Symbol.FUNCTION && this instanceof Symbol) { 661 Object fn = ((Symbol)this).getSymbolFunction();661 LispObject fn = ((Symbol)this).getSymbolFunction(); 662 662 if(fn instanceof Function) { 663 663 DocString ds = fn.getClass().getAnnotation(DocString.class); … … 671 671 ((Symbol)this).setDocumentation(Symbol.FUNCTION, doc); 672 672 return doc; 673 } else if (fn instanceof StandardGenericFunction) { 674 return 675 StandardGenericFunction.checkStandardGenericFunction(fn) 676 .slots[StandardGenericFunctionClass.SLOT_INDEX_DOCUMENTATION]; 673 677 } 674 678 }
Note: See TracChangeset
for help on using the changeset viewer.