diff options
author | joye <joye> | 2013-09-04 17:39:35 (GMT) |
---|---|---|
committer | joye <joye> | 2013-09-04 17:39:35 (GMT) |
commit | 767cfedf2508d835547939d107d1f7f105d404a8 (patch) | |
tree | 39bdabd83028d6c4e5b12a33c4ca62db6a47ff23 /src | |
parent | c435c19166959b240956b5e892b0cbf64e482efb (diff) | |
download | blt-767cfedf2508d835547939d107d1f7f105d404a8.zip blt-767cfedf2508d835547939d107d1f7f105d404a8.tar.gz blt-767cfedf2508d835547939d107d1f7f105d404a8.tar.bz2 |
*** empty log message ***
Diffstat (limited to 'src')
-rw-r--r-- | src/bltParse.C | 11 | ||||
-rw-r--r-- | src/bltParse.h | 4 |
2 files changed, 3 insertions, 12 deletions
diff --git a/src/bltParse.C b/src/bltParse.C index ffbd714..3859883 100644 --- a/src/bltParse.C +++ b/src/bltParse.C @@ -24,26 +24,21 @@ */ #define TIME_WITH_SYS_TIME 0 #define HAVE_SYS_TIME_H 1 - #define STDC_HEADERS 1 #define HAVE_SYS_TYPES_H 1 -#define HAVE_SYS_STAT_H 1 #define HAVE_STDLIB_H 1 -#define HAVE_STRING_H 1 -#define HAVE_MEMORY_H 1 -#define HAVE_STRINGS_H 1 #define HAVE_INTTYPES_H 1 #define HAVE_STDINT_H 1 #define HAVE_UNISTD_H 1 -#define HAVE_LIMITS_H 1 -#define HAVE_SYS_PARAM_H 1 - #include <tclPort.h> #include <tclInt.h> + #include <bltInt.h> #include "bltParse.h" +#define TCL_BRACKET_TERM 1 + /* * A table used to classify input characters to assist in parsing * TCL commands. The table should be indexed with a signed character diff --git a/src/bltParse.h b/src/bltParse.h index fd9aa51..e5a21ce 100644 --- a/src/bltParse.h +++ b/src/bltParse.h @@ -28,7 +28,6 @@ #define _BLT_PARSE_H typedef struct _ParseValue ParseValue; - struct _ParseValue { char *buffer; char *next; @@ -37,9 +36,6 @@ struct _ParseValue { ClientData clientData; }; -#define TCL_BRACKET_TERM 1 -#define TCL_ALLOW_EXCEPTIONS 4 - BLT_EXTERN int Blt_ParseBraces(Tcl_Interp *interp, const char *string, const char **termPtr, ParseValue *pvPtr); |