Skip to content

Commit a8cf61d

Browse files
author
Poor Yorick
committed
Prefer tcl::oo over TclOO.
1 parent 9d6b62e commit a8cf61d

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

modules/virtchannel_base/memchan.tcl

+5-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,11 @@
3333
# # ## ### ##### ######## #############
3434

3535
package require Tcl 8.5 9
36-
package require TclOO
36+
try {
37+
package require tcl::oo
38+
} trap {TCL PACKAGE UNFOUND} {tres topts} {
39+
package require TclOO
40+
}
3741
package require tcl::chan::events
3842

3943
# # ## ### ##### ######## #############

0 commit comments

Comments
 (0)