diff options
author | pooryorick <com.digitalsmarties@pooryorick.com> | 2023-05-04 20:26:19 (GMT) |
---|---|---|
committer | pooryorick <com.digitalsmarties@pooryorick.com> | 2023-05-04 20:26:19 (GMT) |
commit | cc71607cb85a8d6266a40aad0c4b9bbe772efb35 (patch) | |
tree | a53d5287d50c68bae32378a283db190ac06c38ae /generic/tclHistory.c | |
parent | 405a0993845a2f20b043d32d6efe967b3c57a5e9 (diff) | |
download | tcl-cc71607cb85a8d6266a40aad0c4b9bbe772efb35.zip tcl-cc71607cb85a8d6266a40aad0c4b9bbe772efb35.tar.gz tcl-cc71607cb85a8d6266a40aad0c4b9bbe772efb35.tar.bz2 |
Make some tests select an encoding profile instead of relying on the default.
Diffstat (limited to 'generic/tclHistory.c')
-rw-r--r-- | generic/tclHistory.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/generic/tclHistory.c b/generic/tclHistory.c index 9b950fa..dc5a67d 100644 --- a/generic/tclHistory.c +++ b/generic/tclHistory.c @@ -58,9 +58,8 @@ Tcl_RecordAndEval( const char *cmd, /* Command to record. */ int flags) /* Additional flags. TCL_NO_EVAL means only * record: don't execute command. - * TCL_EVAL_GLOBAL means evaluate the script - * in global variable context instead of the - * current procedure. */ + * TCL_EVAL_GLOBAL means use Tcl_GlobalEval + * instead of Tcl_Eval. */ { Tcl_Obj *cmdPtr; int result; |