diff options
author | sebres <sebres@users.sourceforge.net> | 2019-07-24 13:59:08 (GMT) |
---|---|---|
committer | sebres <sebres@users.sourceforge.net> | 2019-07-24 13:59:08 (GMT) |
commit | 94d0201025524429b9275d1a5d1886774de497f8 (patch) | |
tree | bd0944c32c33af972be3249cbd9ca5fefb4a9349 /generic | |
parent | 2a43bf86a01bf3f023388c71cd45c653c0adaab1 (diff) | |
download | tcl-94d0201025524429b9275d1a5d1886774de497f8.zip tcl-94d0201025524429b9275d1a5d1886774de497f8.tar.gz tcl-94d0201025524429b9275d1a5d1886774de497f8.tar.bz2 |
small amend (normalize hex in all evalFlags)
Diffstat (limited to 'generic')
-rw-r--r-- | generic/tclInt.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/generic/tclInt.h b/generic/tclInt.h index 12634f9..cd2ab69 100644 --- a/generic/tclInt.h +++ b/generic/tclInt.h @@ -1976,10 +1976,10 @@ typedef struct Interp { * other than these should be turned into errors. */ -#define TCL_ALLOW_EXCEPTIONS 4 -#define TCL_EVAL_FILE 2 -#define TCL_EVAL_CTX 8 -#define TCL_EVAL_DISCARD_RESULT 0X40 +#define TCL_ALLOW_EXCEPTIONS 0x04 +#define TCL_EVAL_FILE 0x02 +#define TCL_EVAL_CTX 0x08 +#define TCL_EVAL_DISCARD_RESULT 0x40 /* * Flag bits for Interp structures: |