| # | Line 19 | Line 19 | static char SCCSid[] = "$SunId$ LBL"; | |
|---|---|---|
| 19 | #include "otypes.h" | |
| 20 | ||
| 21 | #ifndef OSTSIZ | |
| 22 | + | #ifdef BIGMEM |
| 23 | + | #define OSTSIZ 56437 /* object table size (a prime!) */ |
| 24 | + | #else |
| 25 | #define OSTSIZ 12329 /* object table size (a prime!) */ | |
| 26 | #endif | |
| 27 | + | #endif |
| 28 | ||
| 29 | static OBJECT *ostable[OSTSIZ]; /* the object set table */ | |
| 30 | ||
| # | Line 198 | Line 202 | int orig, nobjs; | |
| 202 | while (i--) { | |
| 203 | s = *os; | |
| 204 | if (s >= orig && s < orig+nobjs && | |
| 205 | < | !issurface(objptr(s)->otype)) |
| 205 | > | ismodifier(objptr(s)->otype)) |
| 206 | return(1); | |
| 207 | os++; | |
| 208 | } | |
| – | Removed lines |
| + | Added lines |
| < | Changed lines (old) |
| > | Changed lines (new) |