Changeset 12589
- Timestamp:
- Aug 15, 2009, 10:47:30 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/working-0711/ccl/compiler/nx-basic.lisp
r12585 r12589 613 613 (:unknown-gf-keywords 614 614 (let ((badguys (cadr reason))) 615 (when (and (consp badguys) (null (%cdr badguys))) (setq badguys (car badguys))) 615 616 (format stream "the keyword argument~:[ ~s is~;s~{ ~s~^~#[~; and~:;,~]~} are~] not recognized by " 617 616 618 (consp badguys) badguys)))) 617 619 (format stream … … 620 622 (:global-mismatch "the current global definition of ~s") 621 623 (:environment-mismatch "the definition of ~s visible in the current compilation unit.") 622 (:lexical-mismatch "the lexically visible definition of ~s")) 624 (:lexical-mismatch "the lexically visible definition of ~s") 625 ;; This can happen when compiling without compilation unit: 626 (:deferred-mismatch "~s")) 623 627 callee))) 624 628 … … 640 644 (:lexical-mismatch . report-compile-time-argument-mismatch) 641 645 (:ftype-mismatch . report-compile-time-argument-mismatch) 646 (:deferred-mismatch . report-compile-time-argument-mismatch) 642 647 (:type . "Type declarations violated in ~S") 643 648 (:type-conflict . "Conflicting type declarations for ~S")
Note: See TracChangeset
for help on using the changeset viewer.