Mercurial > hg > xemacs-beta
diff modules/postgresql/postgresql.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 | e0db3c197671 |
children | a9c41067dd88 |
line wrap: on
line diff
--- a/modules/postgresql/postgresql.h Sat Dec 26 21:22:48 2009 -0600 +++ b/modules/postgresql/postgresql.h Mon Dec 28 01:15:52 2009 -0600 @@ -28,7 +28,7 @@ */ struct Lisp_PGconn { - struct LCRECORD_HEADER header; + LISP_OBJECT_HEADER header; PGconn *pgconn; }; typedef struct Lisp_PGconn Lisp_PGconn; @@ -48,7 +48,7 @@ */ struct Lisp_PGresult { - struct LCRECORD_HEADER header; + LISP_OBJECT_HEADER header; PGresult *pgresult; }; typedef struct Lisp_PGresult Lisp_PGresult;