comparison src/scrollbar.c @ 5120:d1247f3cc363 ben-lisp-object

latest work on lisp-object workspace; more changes eliminating LCRECORD in place of LISP_OBJECT; now compiles and runs.
author Ben Wing <ben@xemacs.org>
date Mon, 28 Dec 2009 01:15:52 -0600
parents e0db3c197671
children 623d57b7fbe8
comparison
equal deleted inserted replaced
5119:d877c14318b3 5120:d1247f3cc363
268 if (HAS_DEVMETH_P(d, compute_scrollbar_instance_usage)) 268 if (HAS_DEVMETH_P(d, compute_scrollbar_instance_usage))
269 total += DEVMETH (d, compute_scrollbar_instance_usage, (d, inst, ovstats)); 269 total += DEVMETH (d, compute_scrollbar_instance_usage, (d, inst, ovstats));
270 270
271 while (inst) 271 while (inst)
272 { 272 {
273 total += LISPOBJ_STORAGE_SIZE (inst, sizeof (*inst), ovstats); 273 total += LISP_OBJECT_STORAGE_SIZE (inst, sizeof (*inst), ovstats);
274 inst = inst->next; 274 inst = inst->next;
275 } 275 }
276 276
277 return total; 277 return total;
278 } 278 }