Mercurial > hg > xemacs-beta
comparison src/frame.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 |
---|---|
286 struct frame); | 286 struct frame); |
287 | 287 |
288 static void | 288 static void |
289 nuke_all_frame_slots (struct frame *f) | 289 nuke_all_frame_slots (struct frame *f) |
290 { | 290 { |
291 ZERO_LCRECORD (f); | 291 ZERO_LISP_OBJECT (f); |
292 | 292 |
293 #define MARKED_SLOT(x) f->x = Qnil; | 293 #define MARKED_SLOT(x) f->x = Qnil; |
294 #include "frameslots.h" | 294 #include "frameslots.h" |
295 } | 295 } |
296 | 296 |