Changeset 489 for abuse/trunk/src/lisp/lisp_gc.cpp
- Timestamp:
- Apr 17, 2011, 10:28:40 AM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
abuse/trunk/src/lisp/lisp_gc.cpp
r488 r489 222 222 if (root) 223 223 { 224 root->value = collect_object(root->value);225 root->function = collect_object(root->function);224 root->value = (LispObject *)collect_object(root->value); 225 root->function = (LispObject *)collect_object(root->function); 226 226 root->name = (LispString *)collect_object(root->name); 227 227 collect_symbols(root->left);
Note: See TracChangeset
for help on using the changeset viewer.