Changeset 11672
- Timestamp:
- Jan 31, 2009, 8:42:04 AM (11 years ago)
- Location:
- release/1.2/source
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
release/1.2/source/compiler/nx-basic.lisp
r9200 r11672 509 509 (:lambda . "Suspicious lambda-list: ~s") 510 510 (:result-ignored . "Function result ignored in call to ~s") 511 (:program-error . "~a"))) 511 (:program-error . "~a") 512 (:unsure . "Nonspecific warning."))) 512 513 513 514 -
release/1.2/source/level-1/l1-error-system.lisp
r8988 r11672 71 71 (:report report-compiler-warning)) 72 72 73 (define-condition style-warning (compiler-warning)) 73 (define-condition style-warning (compiler-warning) 74 ((warning-type :initform :unsure) 75 (args :initform nil))) 76 74 77 (define-condition undefined-function-reference (style-warning)) 75 78 (define-condition macro-used-before-definition (compiler-warning))
Note: See TracChangeset
for help on using the changeset viewer.