Changeset 14459
- Timestamp:
- Nov 25, 2010, 4:27:11 AM (14 years ago)
- File:
-
- 1 edited
-
trunk/source/compiler/nx0.lisp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/source/compiler/nx0.lisp
r14418 r14459 882 882 (nx-bad-decls decl) 883 883 (dolist (s fnames) 884 (if (or (symbolp s) (setf-function-name-p s)) 885 (nx-new-fdecl pending s 'ftype type) 886 (unless (shiftf whined t) (nx-bad-decls decl))))))))) 884 (multiple-value-bind (valid nm) (valid-function-name-p s) 885 (if valid 886 (nx-new-fdecl pending nm 'ftype type) 887 (unless (shiftf whined t) (nx-bad-decls decl)))))))))) 887 888 888 889 (defnxdecl settable (pending decl env)
Note:
See TracChangeset
for help on using the changeset viewer.
