Changeset 636 for abuse/trunk/src/lisp/lisp_opt.cpp
- Timestamp:
- May 11, 2011, 1:26:15 AM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
abuse/trunk/src/lisp/lisp_opt.cpp
r555 r636 93 93 } 94 94 95 void l_comp_init()95 void Lisp::InitConstants() 96 96 { 97 97 // This needs to be defined first 98 l_undefined= LSymbol::FindOrCreate(":UNDEFINED");99 98 LSymbol *tmp = LSymbol::FindOrCreate(":UNDEFINED"); 99 l_undefined = tmp; 100 100 // Collection problems result if we don't do this 101 ((LSymbol *)l_undefined)->function = NULL;102 ((LSymbol *)l_undefined)->value = NULL;101 tmp->m_function = NULL; 102 tmp->m_value = NULL; 103 103 104 104 true_symbol = LSymbol::FindOrCreate("T");
Note: See TracChangeset
for help on using the changeset viewer.