There was a typo at line 50 in database.c, ##ifdef rather than #ifdef (or is
that a C-sharpism?
*** src/ChangeLog~ Fri Jan 21 14:28:50 2005
--- src/xemacs/src/ChangeLog Fri Jan 21 14:28:51 2005
***************
*** 1,3 ****
--- 1,6 ----
+ 2005-01-21 Robert Royar <xemacs(a)frinabulax.org>
+ * database.c repair double pound error at line 50
+
2005-01-21 Malcolm Purvis <malcolmp(a)xemacs.org>
* database.c (dbm_type):
*** src/xemacs/src/database.c.~1~ Fri Jan 21 14:28:08 2005
--- src/xemacs/src/database.c Fri Jan 21 14:28:08 2005
***************
*** 47,53 ****
#ifdef HAVE_INTTYPES_H
#define __BIT_TYPES_DEFINED__
#include <inttypes.h>
! ##if !defined(__FreeBSD__) && !defined(__NetBSD__)
typedef uint8_t u_int8_t;
typedef uint16_t u_int16_t;
typedef uint32_t u_int32_t;
--- 47,53 ----
#ifdef HAVE_INTTYPES_H
#define __BIT_TYPES_DEFINED__
#include <inttypes.h>
! #if !defined(__FreeBSD__) && !defined(__NetBSD__)
typedef uint8_t u_int8_t;
typedef uint16_t u_int16_t;
typedef uint32_t u_int32_t;
Show replies by date