aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen Elliston <bje@gnu.org>2003-08-07 04:11:01 +0000
committerBen Elliston <bje@gnu.org>2003-08-07 04:11:01 +0000
commit9a6dea036a574bcb2a7cff149a2938950cd6b8e2 (patch)
treee11a424dbde5bf40727cb63e71126f07fe9a3705
parent360dd4f6262ca54ea33bf745ff5559a913748a46 (diff)
* lib/remote.exp: Replace "TCL" with "Tcl".
-rw-r--r--ChangeLog4
-rw-r--r--lib/remote.exp6
2 files changed, 7 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index 1ff17c2..0d5d9bb 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2003-08-06 Ben Elliston <bje@wasabisystems.com>
+
+ * lib/remote.exp: Replace "TCL" with "Tcl".
+
2003-07-30 Ben Elliston <bje@wasabisystems.com>
* doc/runtest.1: Replace "TCL" with "Tcl".
diff --git a/lib/remote.exp b/lib/remote.exp
index 0b3748e..537e606 100644
--- a/lib/remote.exp
+++ b/lib/remote.exp
@@ -75,7 +75,7 @@ proc remote_raw_open { args } {
# the kill command will be invoked.
#
proc local_exec { commandline inp outp timeout } {
- # TCL's exec is a pile of crap. It does two very inappropriate things
+ # Tcl's exec is a pile of crap. It does two very inappropriate things
# firstly, it has no business returning an error if the program being
# executed happens to write to stderr. Secondly, it appends its own
# error messages to the output of the command if the process exits with
@@ -111,7 +111,7 @@ proc local_exec { commandline inp outp timeout } {
}
set use_tee 0
- # We add |& cat so that TCL exec doesn't freak out if the
+ # We add |& cat so that Tcl exec doesn't freak out if the
# program writes to stderr.
if { $outp == "" } {
set outp "|& cat"
@@ -175,7 +175,7 @@ proc local_exec { commandline inp outp timeout } {
# Uuuuuuugh. Now I'm getting really sick.
# If we didn't get an EOF, we have to kill the poor defenseless program.
- # However, TCL has no kill primitive, so we have to execute an external
+ # However, Tcl has no kill primitive, so we have to execute an external
# command in order to execute the execution. (English. Gotta love it.)
if { ! $got_eof } {
verbose "killing $pid $pgid"