diff options
| author | dgp@users.sourceforge.net <dgp> | 2013-08-06 13:30:36 (GMT) |
|---|---|---|
| committer | dgp@users.sourceforge.net <dgp> | 2013-08-06 13:30:36 (GMT) |
| commit | 4e1615a43cace286b2ab139cfdaf5957a9fa44ed (patch) | |
| tree | 0f401bf1c2cf02da7b36f24e7055e057a057e391 | |
| parent | 69254dabeb027fd7a4705a4abb51a565901e8cc1 (diff) | |
| download | tcl-4e1615a43cace286b2ab139cfdaf5957a9fa44ed.zip tcl-4e1615a43cace286b2ab139cfdaf5957a9fa44ed.tar.gz tcl-4e1615a43cace286b2ab139cfdaf5957a9fa44ed.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. */ |
