Changeset 14906
- Timestamp:
- 10/24/16 10:07:03 (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/abcl/contrib/jss/invoke.lisp
r14861 r14906 264 264 (error "Ambiguous class name: ~a can be ~{~a~^, ~}" name choices))) 265 265 (if (zerop bucket-length) 266 name 266 (progn (warn "can't find class named ~a" name) nil) 267 267 (let ((matches (loop for el in bucket when (matches-end name el 'char=) collect el))) 268 268 (if (= (length matches) 1) … … 273 273 (car matches) 274 274 (if (= (length matches) 0) 275 name 275 (progn (warn "can't find class named ~a" name) nil) 276 276 (ambiguous matches)))) 277 277 (ambiguous matches))))))))))
Note: See TracChangeset
for help on using the changeset viewer.