Mercurial > hg > xemacs-beta
diff src/eldap.h @ 280:7df0dd720c89 r21-0b38
Import from CVS: tag r21-0b38
author | cvs |
---|---|
date | Mon, 13 Aug 2007 10:32:22 +0200 |
parents | 6330739388db |
children | c42ec1d1cded |
line wrap: on
line diff
--- a/src/eldap.h Mon Aug 13 10:31:30 2007 +0200 +++ b/src/eldap.h Mon Aug 13 10:32:22 2007 +0200 @@ -29,8 +29,6 @@ #else /* HAVE_LDAP */ -extern Lisp_Object Qopen, Qclosed; - struct Lisp_LDAP; DECLARE_LRECORD (ldap, struct Lisp_LDAP); @@ -39,6 +37,7 @@ #define LDAPP(x) RECORDP (x, ldap) #define GC_LDAPP(x) GC_RECORDP (x, ldap) #define CHECK_LDAP(x) CHECK_RECORD (x, ldap) +#define CONCHECK_LDAP(x) CONCHECK_RECORD (x, ldap) #define LDAP_LIVE_P(x) (EQ (x->status_symbol, Qopen)) #define CHECK_LIVE_LDAP(ldap) do { \ @@ -47,8 +46,8 @@ signal_simple_error ("Attempting to access closed LDAP connection", \ ldap); \ } while (0) - - + + #ifdef emacs