| 309 | } |
| 310 | |
| 311 | staticfn void |
| 312 | dispose_of_orig_obj(struct obj *obj) |
| 313 | { |
| 314 | if (!obj) |
| 315 | return; |
| 316 | |
| 317 | obj_extract_self(obj); |
| 318 | obfree(obj, (struct obj *) 0); |
| 319 | } |
| 320 | |
| 321 | /* |
| 322 | * Returns the full name (with articles and correct capitalization) of an |
no test coverage detected