Changeset 516
- Timestamp:
- Feb 10, 2004, 11:06:59 AM (21 years ago)
- File:
-
- 1 edited
-
trunk/ccl/compiler/nx-basic.lisp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/ccl/compiler/nx-basic.lisp
r293 r516 208 208 (eq :symbol-macro (car (var-ea v)))) 209 209 (setq vartype :symbol-macro) 210 (unless vartype (setq vartype :lexical))) 210 (unless vartype (setq vartype 211 (let* ((bits (var-bits v))) 212 (if (and (typep bits 'integer) 213 (logbitp $vbitspecial bits)) 214 :special 215 :lexical))))) 211 216 (return))) 212 217 (when vartype (return))))))
Note:
See TracChangeset
for help on using the changeset viewer.
