| 119 |
|
// if no keywords turn up, check the word against the list of defines |
| 120 |
|
|
| 121 |
|
if( defined_list != NULL ){ |
| 122 |
+ |
|
| 123 |
|
def_ptr = defined_list[key]; |
| 124 |
|
|
| 125 |
|
while( def_ptr != NULL ){ |
| 126 |
< |
|
| 126 |
> |
|
| 127 |
|
matched = !strcmp( text, def_ptr->defined ); |
| 128 |
|
if( matched ) return DEFINED; |
| 129 |
|
|
| 273 |
|
// if the key is less than zero, we've had an overflow error |
| 274 |
|
|
| 275 |
|
sprintf( painCave.errMsg, |
| 276 |
< |
"Bass Parse: There has been an overflow error in the hash key."); |
| 276 |
> |
"Meta-data parse error: There has been an overflow error in the hash key."); |
| 277 |
|
painCave.isFatal =1; |
| 278 |
|
simError(); |
| 279 |
|
} |