Changeset 11958 for trunk/source/lib/method-combination.lisp
- Timestamp:
- Apr 19, 2009, 4:09:28 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/source/lib/method-combination.lisp
r11855 r11958 457 457 (declare (fixnum bits numreq numopt)) 458 458 (and (< i numopt) 459 (< (the fix um (+ i numreq)) (length argvals)))))459 (< (the fixnum (+ i numreq)) (length argvals))))) 460 460 461 461 ;;; This assumes that we've checked for argument presence. … … 465 465 (numreq (ldb $lfbits-numreq bits))) 466 466 (declare (fixnum bits numreq )) 467 (nth (the fix um (+ i numreq)) argvals)))467 (nth (the fixnum (+ i numreq)) argvals))) 468 468 469 469 (defun gf-arguments-tail (gf argvals)
Note: See TracChangeset
for help on using the changeset viewer.