summaryrefslogtreecommitdiffstats
path: root/library
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2020-09-01 09:15:11 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2020-09-01 09:15:11 (GMT)
commit724de352e37dd0fe795024353378cd662593b4a6 (patch)
tree4d740034b1040a594df0e43c023bc8c38283368d /library
parent6b0b7154f13dc5d47830ef1daaea80c791504f8a (diff)
downloadtcl-724de352e37dd0fe795024353378cd662593b4a6.zip
tcl-724de352e37dd0fe795024353378cd662593b4a6.tar.gz
tcl-724de352e37dd0fe795024353378cd662593b4a6.tar.bz2
Many more internal master/slave -> parent/child renamings
Diffstat (limited to 'library')
-rw-r--r--library/auto.tcl12
1 files changed, 6 insertions, 6 deletions
diff --git a/library/auto.tcl b/library/auto.tcl
index 27173df..825aeeb 100644
--- a/library/auto.tcl
+++ b/library/auto.tcl
@@ -376,10 +376,10 @@ proc auto_mkindex_parser::mkindex {file} {
# auto_mkindex_parser::hook command
#
-# Registers a Tcl command to evaluate when initializing the slave interpreter
+# Registers a Tcl command to evaluate when initializing the child interpreter
# used by the mkindex parser. The command is evaluated in the parent
# interpreter, and can use the variable auto_mkindex_parser::parser to get to
-# the slave
+# the child
proc auto_mkindex_parser::hook {cmd} {
variable initCommands
@@ -389,14 +389,14 @@ proc auto_mkindex_parser::hook {cmd} {
# auto_mkindex_parser::slavehook command
#
-# Registers a Tcl command to evaluate when initializing the slave interpreter
-# used by the mkindex parser. The command is evaluated in the slave
+# Registers a Tcl command to evaluate when initializing the child interpreter
+# used by the mkindex parser. The command is evaluated in the child
# interpreter.
proc auto_mkindex_parser::slavehook {cmd} {
variable initCommands
- # The $parser variable is defined to be the name of the slave interpreter
+ # The $parser variable is defined to be the name of the child interpreter
# when this command is used later.
lappend initCommands "\$parser eval [list $cmd]"
@@ -550,7 +550,7 @@ auto_mkindex_parser::command proc {name args} {
# Conditionally add support for Tcl byte code files. There are some tricky
# details here. First, we need to get the tbcload library initialized in the
-# current interpreter. We cannot load tbcload into the slave until we have
+# current interpreter. We cannot load tbcload into the child until we have
# done so because it needs access to the tcl_patchLevel variable. Second,
# because the package index file may defer loading the library until we invoke
# a command, we need to explicitly invoke auto_load to force it to be loaded.