From 5aa416c8bd35992fae7bab7b7a24b6cd8a986cd8 Mon Sep 17 00:00:00 2001 From: Bob Halley Date: Sat, 9 Jan 1999 02:39:19 +0000 Subject: [PATCH] lint; text region support --- lib/isc/include/isc/lex.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/isc/include/isc/lex.h b/lib/isc/include/isc/lex.h index 33acfc1793..1cbde66b91 100644 --- a/lib/isc/include/isc/lex.h +++ b/lib/isc/include/isc/lex.h @@ -103,13 +103,14 @@ typedef enum { isc_tokentype_eol = 4, isc_tokentype_eof = 5, isc_tokentype_initialws = 6, - isc_tokentype_special = 7, + isc_tokentype_special = 7 } isc_tokentype_t; typedef union { char as_char; unsigned long as_ulong; isc_region_t as_region; + isc_textregion_t as_textregion; void * as_pointer; } isc_tokenvalue_t;