summaryrefslogtreecommitdiffstats
path: root/generic/tclInt.h
diff options
context:
space:
mode:
authorpooryorick <com.digitalsmarties@pooryorick.com>2021-09-02 23:03:07 (GMT)
committerpooryorick <com.digitalsmarties@pooryorick.com>2021-09-02 23:03:07 (GMT)
commitdff41a451d6d474fceb935decbcef5794ecd20ff (patch)
treea9400c49dcefd1f395f3deb3b749886be2fdb5a0 /generic/tclInt.h
parent975416ffc016b64aa500f81e21deabc1e0b56cda (diff)
downloadtcl-dff41a451d6d474fceb935decbcef5794ecd20ff.zip
tcl-dff41a451d6d474fceb935decbcef5794ecd20ff.tar.gz
tcl-dff41a451d6d474fceb935decbcef5794ecd20ff.tar.bz2
Merge fixes for [ccc448a6bfd5], namespace ensemble subcommand name prefix
matching and a subsequent error results in a segmentation fault.
Diffstat (limited to 'generic/tclInt.h')
-rw-r--r--generic/tclInt.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tclInt.h b/generic/tclInt.h
index 9fec41e..dc6b83f 100644
--- a/generic/tclInt.h
+++ b/generic/tclInt.h
@@ -2941,8 +2941,8 @@ MODULE_SCOPE char * TclDStringAppendDString(Tcl_DString *dsPtr,
MODULE_SCOPE Tcl_Obj * TclDStringToObj(Tcl_DString *dsPtr);
MODULE_SCOPE Tcl_Obj *const * TclFetchEnsembleRoot(Tcl_Interp *interp,
Tcl_Obj *const *objv, int objc, int *objcPtr);
-MODULE_SCOPE Tcl_Namespace * TclEnsureNamespace(
- Tcl_Interp *interp,
+MODULE_SCOPE Tcl_Obj *const *TclEnsembleGetRewriteValues(Tcl_Interp *interp);
+MODULE_SCOPE Tcl_Namespace *TclEnsureNamespace(Tcl_Interp *interp,
Tcl_Namespace *namespacePtr);
MODULE_SCOPE void TclFinalizeAllocSubsystem(void);