1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
|
if {![info exists loginCookie]} then {
return false
}
if {[isEagle] || \
([info exists tcl_version] && $tcl_version >= 8.5)} then {
if {[string is list -strict $loginCookie]} then {
return false
}
}
if {[llength $loginCookie] != 2} then {
return false
}
|
|
|
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
|
if {![info exists loginCookie]} then {
return false
}
if {[isEagle] || \
([info exists tcl_version] && $tcl_version >= 8.5)} then {
if {![string is list -strict $loginCookie]} then {
return false
}
}
if {[llength $loginCookie] != 2} then {
return false
}
|