Mercurial > hg > xemacs-beta
changeset 946:a9077bb4dbf1
[xemacs-hg @ 2002-08-02 11:36:51 by michaels]
2002-08-02 Marcus Crestani <crestani@informatik.uni-tuebingen.de>
* postgresql.c: Add dumpable-flag to pgconn and pgresult for
USE_KKCC.
author | michaels |
---|---|
date | Fri, 02 Aug 2002 11:37:01 +0000 |
parents | 7924b28c57a4 |
children | 5358ec398c43 |
files | src/ChangeLog src/postgresql.c |
diffstat | 2 files changed, 7 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/src/ChangeLog Thu Aug 01 08:38:48 2002 +0000 +++ b/src/ChangeLog Fri Aug 02 11:37:01 2002 +0000 @@ -1,3 +1,8 @@ +2002-08-02 Marcus Crestani <crestani@informatik.uni-tuebingen.de> + + * postgresql.c: Add dumpable-flag to pgconn and pgresult for + USE_KKCC. + 2002-07-31 Didier Verna <didier@xemacs.org> * file-coding.c (make_coding_system_1): Add missing call to
--- a/src/postgresql.c Thu Aug 01 08:38:48 2002 +0000 +++ b/src/postgresql.c Fri Aug 02 11:37:01 2002 +0000 @@ -269,6 +269,7 @@ #else #ifdef USE_KKCC DEFINE_LRECORD_IMPLEMENTATION ("pgconn", pgconn, + 0, /*dumpable-flag*/ mark_pgconn, print_pgconn, finalize_pgconn, NULL, NULL, pgconn_description, @@ -401,6 +402,7 @@ #else #ifdef USE_KKCC DEFINE_LRECORD_IMPLEMENTATION ("pgresult", pgresult, + 0, /*dumpable-flag*/ mark_pgresult, print_pgresult, finalize_pgresult, NULL, NULL, pgresult_description,