From mboxrd@z Thu Jan 1 00:00:00 1970 From: Keith Seitz To: Insight Maling List Subject: [PATCH/libgui] tkTable.tcl "string equal" Date: Fri, 24 Aug 2001 08:32:00 -0000 Message-id: X-SW-Source: 2001-q3/msg00193.html Hi, Given that we're still using Tcl8.0 for a little while, I am changing tkTable.tcl's use of "string equal" (which does not exist until Tcl8.1) to "string compare". Keith ChangeLog 2001-08-24 Keith Seitz * src/tkTable.tcl: Use "string compare" instead of "string equal". The latter is only available in newer versions of tcl. Patch Index: src/tkTable.tcl =================================================================== RCS file: /cvs/src/src/libgui/src/tkTable.tcl,v retrieving revision 1.2 diff -u -p -r1.2 tkTable.tcl --- tkTable.tcl 2001/08/13 17:53:52 1.2 +++ tkTable.tcl 2001/08/24 15:30:27 @@ -189,7 +189,7 @@ if {[string match "macintosh" $tcl_platf # Results: # Returns the selection, or an error if none could be found # -if {[string equal $tcl_platform(platform) "unix"]} { +if {[string compare $tcl_platform(platform) "unix"] == 0} { proc ::tk::table::GetSelection {w {sel PRIMARY}} { if {[catch {selection get -displayof $w -selection $sel \ -type UTF8_STRING} txt] \