Changeset 12000
- Timestamp:
- 06/06/09 19:40:42 (15 years ago)
- Location:
- branches/0.15.x/abcl
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/0.15.x/abcl/CHANGES
r11928 r12000 3 3 4 4 Summary of changes: 5 * 2 more MOP exported symbols to support Cells port 5 6 * Updated FASL version 6 7 * Support (pre)compilation of functions with a non-null lexical environment -
branches/0.15.x/abcl/src/org/armedbear/lisp/autoloads.lisp
r11995 r12000 191 191 192 192 (in-package "MOP") 193 (export 'class-precedence-list) 194 (autoload 'class-precedence-list "clos") 193 (export '(class-precedence-list class-slots slot-definition-name)) 194 (autoload '(class-precedence-list class-slots slot-definition-name) "clos") 195 195 196 196 197 ;; Java interface. -
branches/0.15.x/abcl/src/org/armedbear/lisp/clos.lisp
r11799 r12000 52 52 (in-package #:mop) 53 53 54 (export '(class-precedence-list)) 54 (export '(class-precedence-list class-slots slot-definition-name)) 55 56 (defun class-slots (class) 57 (%class-slots class)) 58 59 (defun slot-definition-name (slot-definition) 60 (%slot-definition-name slot-definition)) 55 61 56 62 (defmacro push-on-end (value location)
Note: See TracChangeset
for help on using the changeset viewer.