Mercurial > hg > xemacs-beta
annotate modules/postgresql/postgresql.h @ 1332:6aa23bb3da6b
[xemacs-hg @ 2003-03-02 02:18:05 by ben]
To: xemacs-patches@xemacs.org
PROBLEMS: Include nt/PROBLEMS and update. Add note about incremental
linking badness.
cmdloop.el, custom.el, dumped-lisp.el, files.el, keydefs.el, keymap.el, lisp-mode.el, make-docfile.el, replace.el, simple.el, subr.el, view-less.el, wid-edit.el: Lots of syncing with FSF 21.2.
Use if-fboundp in wid-edit.el.
New file newcomment.el from FSF.
internals/internals.texi: Fix typo.
(Build-Time Dependencies): New node.
PROBLEMS: Delete.
config.inc.samp, xemacs.mak: Eliminate HAVE_VC6, use SUPPORT_EDIT_AND_CONTINUE in its place.
No incremental linking unless SUPPORT_EDIT_AND_CONTINUE, since it
can cause nasty crashes in pdump. Put warnings about this in
config.inc.samp. Report the full compile flags used for src
and lib-src in the Installation output.
alloc.c, lisp.h, ralloc.c, regex.c: Use ALLOCA() in regex.c to avoid excessive stack allocation.
Also fix subtle problem with REL_ALLOC() -- any call to malloc()
(direct or indirect) may relocate rel-alloced data, causing
buffer text to shift. After any such call, regex must update
all its pointers to such data. Add a system, when
ERROR_CHECK_MALLOC, whereby regex.c indicates all the places
it is prepared to handle malloc()/realloc()/free(), and any
calls anywhere in XEmacs outside of this will trigger an abort.
alloc.c, dialog-msw.c, eval.c, event-stream.c, general-slots.h, insdel.c, lisp.h, menubar-msw.c, menubar-x.c: Change *run_hook*_trapping_problems to take a warning class, not
a string. Factor out code to issue warnings, add flag to
call_trapping_problems() to postpone warning issue, and make
*run_hook*_trapping_problems issue their own warnings tailored
to the hook, postponed in the case of safe_run_hook_trapping_problems()
so that the appropriate message can be issued about resetting to
nil only when not `quit'. Make record_unwind_protect_restoring_int()
non-static.
dumper.c: Issue notes about incremental linking problems under Windows.
fileio.c: Mule-ize encrypt/decrypt-string code.
text.h: Spacing changes.
| author | ben |
|---|---|
| date | Sun, 02 Mar 2003 02:18:12 +0000 |
| parents | 25e260cb7994 |
| children | 6fa9919a9a0b |
| rev | line source |
|---|---|
| 996 | 1 /* |
| 2 postgresql.h -- Emacs Lisp binding to libpq.so | |
| 3 Copyright (C) 2000 Electrotechnical Laboratory, JAPAN. | |
| 4 Licensed to the Free Software Foundation. | |
| 5 | |
| 6 Author: SL Baur <steve@beopen.com> | |
| 7 Maintainer: SL Baur <steve@beopen.com> | |
| 8 | |
| 9 Please send patches to this file to me first before submitting them to | |
| 10 xemacs-patches. | |
| 11 */ | |
| 12 | |
| 13 #ifndef INCLUDED_postgresql_h_ | |
| 14 #define INCLUDED_postgresql_h_ 1 | |
| 15 | |
| 16 #define message message_ /* Yuck */ | |
| 17 #include LIBPQ_FE_H_FILE /* main PostgreSQL header file */ | |
| 18 #undef message | |
| 19 | |
| 20 #define BLCKSZ 8192 /* size of a default Postgres disk block */ | |
| 21 /* | |
| 22 This file contains the GCC bug workaround code for the private | |
| 23 LRECORD types. | |
| 24 */ | |
| 25 | |
| 26 /* PGconn is an opaque object and we need to be able to store them in | |
| 27 Lisp code because libpq supports multiple connections. | |
| 28 */ | |
| 29 struct Lisp_PGconn | |
| 30 { | |
| 31 struct lcrecord_header header; | |
| 32 PGconn *pgconn; | |
| 33 }; | |
| 34 typedef struct Lisp_PGconn Lisp_PGconn; | |
| 35 | |
| 36 DECLARE_LRECORD (pgconn, Lisp_PGconn); | |
| 37 | |
| 38 #define XPGCONN(x) XRECORD (x, pgconn, Lisp_PGconn) | |
| 39 #define wrap_pgconn(p) wrap_record (p, pgconn) | |
| 40 #define PGCONNP(x) RECORDP (x, pgconn) | |
| 41 #define CHECK_PGCONN(x) CHECK_RECORD (x, pgconn) | |
| 42 #define CONCHECK_PGCONN(x) CONCHECK_RECORD (x, pgconn) | |
| 43 | |
| 44 /****/ | |
| 45 | |
| 46 /* PGresult is an opaque object and we need to be able to store them in | |
| 47 Lisp code. | |
| 48 */ | |
| 49 struct Lisp_PGresult | |
| 50 { | |
| 51 struct lcrecord_header header; | |
| 52 PGresult *pgresult; | |
| 53 }; | |
| 54 typedef struct Lisp_PGresult Lisp_PGresult; | |
| 55 | |
| 56 DECLARE_LRECORD (pgresult, Lisp_PGresult); | |
| 57 | |
| 58 #define XPGRESULT(x) XRECORD (x, pgresult, Lisp_PGresult) | |
| 59 #define wrap_pgresult(p) wrap_record (p, pgresult) | |
| 60 #define PGRESULTP(x) RECORDP (x, pgresult) | |
| 61 #define CHECK_PGRESULT(x) CHECK_RECORD (x, pgresult) | |
| 62 #define CONCHECK_PGRESULT(x) CONCHECK_RECORD (x, pgresult) | |
| 63 | |
| 64 #endif /* INCLUDED_postgresql_h_ */ |
