aboutsummaryrefslogtreecommitdiff
path: root/jim.h
diff options
context:
space:
mode:
authorSteve Bennett <steveb@workware.net.au>2017-09-16 13:15:09 +1000
committerSteve Bennett <steveb@workware.net.au>2017-09-16 15:38:12 +1000
commitfa68b74c218b40476d0c5bac124141c27a00c902 (patch)
tree34f52ab42590c6dae8d74e15b0ea4e5a0963ef06 /jim.h
parent59af8ac418343fb922ba602b3690707c07b8cdda (diff)
downloadjimtcl-fa68b74c218b40476d0c5bac124141c27a00c902.zip
jimtcl-fa68b74c218b40476d0c5bac124141c27a00c902.tar.gz
jimtcl-fa68b74c218b40476d0c5bac124141c27a00c902.tar.bz2
remove special regexpValue internal rep
To avoid an explosion of different internal rep structures, simply use the existing ptrIntValue for jim-regexp Signed-off-by: Steve Bennett <steveb@workware.net.au>
Diffstat (limited to 'jim.h')
-rw-r--r--jim.h5
1 files changed, 0 insertions, 5 deletions
diff --git a/jim.h b/jim.h
index 85a6918..65bf7cc 100644
--- a/jim.h
+++ b/jim.h
@@ -337,11 +337,6 @@ typedef struct Jim_Obj {
struct Jim_Obj *varNameObjPtr;
struct Jim_Obj *indexObjPtr;
} dictSubstValue;
- /* Regular expression pattern */
- struct {
- void *compre; /* really an allocated (regex_t *) */
- unsigned flags;
- } regexpValue;
struct {
int line;
int argc;