comparison src/frame-impl.h @ 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 1e7cc382eb16
children 2a462149bd6a
comparison
equal deleted inserted replaced
5119:d877c14318b3 5120:d1247f3cc363
39 #define FRAMEMETH_OR_GIVEN(f, m, args, given) \ 39 #define FRAMEMETH_OR_GIVEN(f, m, args, given) \
40 CONTYPE_METH_OR_GIVEN((f)->framemeths, m, args, given) 40 CONTYPE_METH_OR_GIVEN((f)->framemeths, m, args, given)
41 41
42 struct frame 42 struct frame
43 { 43 {
44 struct LCRECORD_HEADER header; 44 LISP_OBJECT_HEADER header;
45 45
46 /* Methods for this frame's console. This can also be retrieved 46 /* Methods for this frame's console. This can also be retrieved
47 through frame->device->console, but it's faster this way. */ 47 through frame->device->console, but it's faster this way. */
48 struct console_methods *framemeths; 48 struct console_methods *framemeths;
49 49