summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorhobbs <hobbs>1999-09-30 02:05:53 (GMT)
committerhobbs <hobbs>1999-09-30 02:05:53 (GMT)
commit36336894ed33566a3d7a855ff2824b389da120b2 (patch)
tree646bb3056309fc81a86ff2264529eeae4e486be0
parent6051e0b7f63df5632de3f958872eee5d89cd26fc (diff)
downloadtcl-36336894ed33566a3d7a855ff2824b389da120b2.zip
tcl-36336894ed33566a3d7a855ff2824b389da120b2.tar.gz
tcl-36336894ed33566a3d7a855ff2824b389da120b2.tar.bz2
fixed possible ref to global 'c' var in namespace init code
-rw-r--r--library/http/http.tcl6
-rw-r--r--library/http2.1/http.tcl6
-rw-r--r--library/http2.3/http.tcl6
3 files changed, 9 insertions, 9 deletions
diff --git a/library/http/http.tcl b/library/http/http.tcl
index f448077..b2824cc 100644
--- a/library/http/http.tcl
+++ b/library/http/http.tcl
@@ -9,7 +9,7 @@
# See the file "license.terms" for information on usage and
# redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
#
-# RCS: @(#) $Id: http.tcl,v 1.9 1999/08/05 16:57:48 hobbs Exp $
+# RCS: @(#) $Id: http.tcl,v 1.9.4.1 1999/09/30 02:05:53 hobbs Exp $
package provide http 2.1 ;# This uses Tcl namespaces
@@ -25,8 +25,8 @@ namespace eval http {
}
variable formMap
- set alphanumeric a-zA-Z0-9
-
+ variable alphanumeric a-zA-Z0-9
+ variable c
variable i 0
for {} {$i <= 256} {incr i} {
set c [format %c $i]
diff --git a/library/http2.1/http.tcl b/library/http2.1/http.tcl
index f448077..b2824cc 100644
--- a/library/http2.1/http.tcl
+++ b/library/http2.1/http.tcl
@@ -9,7 +9,7 @@
# See the file "license.terms" for information on usage and
# redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
#
-# RCS: @(#) $Id: http.tcl,v 1.9 1999/08/05 16:57:48 hobbs Exp $
+# RCS: @(#) $Id: http.tcl,v 1.9.4.1 1999/09/30 02:05:53 hobbs Exp $
package provide http 2.1 ;# This uses Tcl namespaces
@@ -25,8 +25,8 @@ namespace eval http {
}
variable formMap
- set alphanumeric a-zA-Z0-9
-
+ variable alphanumeric a-zA-Z0-9
+ variable c
variable i 0
for {} {$i <= 256} {incr i} {
set c [format %c $i]
diff --git a/library/http2.3/http.tcl b/library/http2.3/http.tcl
index f448077..b2824cc 100644
--- a/library/http2.3/http.tcl
+++ b/library/http2.3/http.tcl
@@ -9,7 +9,7 @@
# See the file "license.terms" for information on usage and
# redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
#
-# RCS: @(#) $Id: http.tcl,v 1.9 1999/08/05 16:57:48 hobbs Exp $
+# RCS: @(#) $Id: http.tcl,v 1.9.4.1 1999/09/30 02:05:53 hobbs Exp $
package provide http 2.1 ;# This uses Tcl namespaces
@@ -25,8 +25,8 @@ namespace eval http {
}
variable formMap
- set alphanumeric a-zA-Z0-9
-
+ variable alphanumeric a-zA-Z0-9
+ variable c
variable i 0
for {} {$i <= 256} {incr i} {
set c [format %c $i]