diff options
author | dgp <dgp@users.sourceforge.net> | 2013-08-06 13:30:36 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2013-08-06 13:30:36 (GMT) |
commit | 1d99884b0866f09d7b19d0546818d426642d9494 (patch) | |
tree | 0f401bf1c2cf02da7b36f24e7055e057a057e391 | |
parent | 8bd533d76ea3530028e7bc3c32ec981f3c78c683 (diff) | |
download | tcl-1d99884b0866f09d7b19d0546818d426642d9494.zip tcl-1d99884b0866f09d7b19d0546818d426642d9494.tar.gz tcl-1d99884b0866f09d7b19d0546818d426642d9494.tar.bz2 |
Drop TCL_LOCATION_EVAL_LIST now that it is unused.
-rw-r--r-- | generic/tclInt.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/generic/tclInt.h b/generic/tclInt.h index d398591..cd4ab7d 100644 --- a/generic/tclInt.h +++ b/generic/tclInt.h @@ -1275,8 +1275,6 @@ typedef struct ContLineLoc { * location data referenced via the 'baseLocPtr'. * * TCL_LOCATION_EVAL : Frame is for a script evaluated by EvalEx. - * TCL_LOCATION_EVAL_LIST : Frame is for a script evaluated by the list - * optimization path of EvalObjEx. * TCL_LOCATION_BC : Frame is for bytecode. * TCL_LOCATION_PREBC : Frame is for precompiled bytecode. * TCL_LOCATION_SOURCE : Frame is for a script evaluated by EvalEx, from a @@ -1288,8 +1286,6 @@ typedef struct ContLineLoc { */ #define TCL_LOCATION_EVAL (0) /* Location in a dynamic eval script. */ -#define TCL_LOCATION_EVAL_LIST (1) /* Location in a dynamic eval script, - * list-path. */ #define TCL_LOCATION_BC (2) /* Location in byte code. */ #define TCL_LOCATION_PREBC (3) /* Location in precompiled byte code, no * location. */ |