File tree 2 files changed +7
-2
lines changed
2 files changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -174,6 +174,11 @@ clean_NOT_v2(ITEM * ptr, int4 *len)
174
174
return plaintree (clean_NOT_intree (root ), len );
175
175
}
176
176
177
+
178
+ #ifdef V_UNKNOWN /* exists in Windows headers */
179
+ #undef V_UNKNOWN
180
+ #endif
181
+
177
182
#define V_UNKNOWN 0
178
183
#define V_TRUE 1
179
184
#define V_FALSE 2
Original file line number Diff line number Diff line change @@ -76,11 +76,11 @@ prsd_end(PG_FUNCTION_ARGS)
76
76
#define ENDPUNCTOKEN (x ) ( (x)==12 )
77
77
78
78
79
- #define IDIGNORE (x ) ( (x)==13 || (x)==14 || (x)==12 || (x)==23 )
79
+ #define TS_IDIGNORE (x ) ( (x)==13 || (x)==14 || (x)==12 || (x)==23 )
80
80
#define HLIDIGNORE (x ) ( (x)==5 || (x)==13 || (x)==15 || (x)==16 || (x)==17 )
81
81
#define HTMLHLIDIGNORE (x ) ( (x)==5 || (x)==15 || (x)==16 || (x)==17 )
82
82
#define NONWORDTOKEN (x ) ( (x)==12 || HLIDIGNORE(x) )
83
- #define NOENDTOKEN (x ) ( NONWORDTOKEN(x) || (x)==7 || (x)==8 || (x)==20 || (x)==21 || (x)==22 || IDIGNORE (x) )
83
+ #define NOENDTOKEN (x ) ( NONWORDTOKEN(x) || (x)==7 || (x)==8 || (x)==20 || (x)==21 || (x)==22 || TS_IDIGNORE (x) )
84
84
85
85
typedef struct
86
86
{
You can’t perform that action at this time.
0 commit comments