blob: 62f61cc5a4b1fff7d025fb3e8b8dc53dacbf9fb3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
--- a/src/tcl/tclwrap.c
+++ b/src/tcl/tclwrap.c
@@ -46,7 +46,7 @@
result = Tcl_EvalFile(interp, (char *)fileName) == TCL_OK;
if (!result) {
utWarning("Tcl error in file %s, line %d: %s", fileName,
- interp->errorLine, interp->result);
+ Tcl_GetErrorLine(interp), Tcl_GetStringResult(interp));
}
return result;
}
@@ -75,7 +75,7 @@
commandLine[xChar] = '\0';
result = Tcl_Eval(interp, commandLine);
if (result == TCL_ERROR) {
- utWarning("Tcl error: %s", interp->result);
+ utWarning("Tcl error: %s", Tcl_GetStringResult(interp));
}
} while (result != TCL_RETURN);
return true;
|