Changeset 119


Ignore:
Timestamp:
Dec 12, 2003, 3:30:18 PM (21 years ago)
Author:
Gary Byers
Message:

STRUCTURE isn't a type-specifier; use STRUCTURE-OBJECT instead.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/ccl/lib/defstruct.lisp

    r78 r119  
    8181(defun struct-ref (struct offset)
    8282  (if (structurep struct) (uvref struct offset)
    83       (report-bad-arg struct 'structure)))
     83      (report-bad-arg struct 'structure-object)))
    8484
    8585(defun struct-set (struct offset value)
    8686  (if (structurep struct) (uvset struct offset value)
    87       (report-bad-arg struct 'structure)))
     87      (report-bad-arg struct 'structure-object)))
    8888
    8989(defsetf struct-ref struct-set)
Note: See TracChangeset for help on using the changeset viewer.