comparison src/device-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 a9c41067dd88
comparison
equal deleted inserted replaced
5119:d877c14318b3 5120:d1247f3cc363
69 #define MAYBE_LISP_DEVMETH(d, m, args) \ 69 #define MAYBE_LISP_DEVMETH(d, m, args) \
70 MAYBE_LISP_CONTYPE_METH ((d)->devmeths, m, args) 70 MAYBE_LISP_CONTYPE_METH ((d)->devmeths, m, args)
71 71
72 struct device 72 struct device
73 { 73 {
74 struct LCRECORD_HEADER header; 74 LISP_OBJECT_HEADER header;
75 75
76 /* Methods for this device's console. This can also be retrieved 76 /* Methods for this device's console. This can also be retrieved
77 through device->console, but it's faster this way. */ 77 through device->console, but it's faster this way. */
78 struct console_methods *devmeths; 78 struct console_methods *devmeths;
79 79