diff options
author | dgp <dgp@users.sourceforge.net> | 2005-07-22 21:59:36 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2005-07-22 21:59:36 (GMT) |
commit | 14816591e601d46ce04cda2a9046995076aa51f5 (patch) | |
tree | 1afdc31e39babf2156e2ff5c0cbc65c505ed0116 /library/word.tcl | |
parent | c7cbce40a31cd045bd4d15ebf401f13f6172ab2b (diff) | |
download | tcl-14816591e601d46ce04cda2a9046995076aa51f5.zip tcl-14816591e601d46ce04cda2a9046995076aa51f5.tar.gz tcl-14816591e601d46ce04cda2a9046995076aa51f5.tar.bz2 |
* library/auto.tcl: Updates to the Tcl script library to make
* library/history.tcl: use of Tcl 8.4 feautures. Thanks to
* library/init.tcl: Patrick Fradin for prompting on this.
* library/package.tcl: [Patch 1237755].
* library/safe.tcl:
* library/word.tcl:
Diffstat (limited to 'library/word.tcl')
-rw-r--r-- | library/word.tcl | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/library/word.tcl b/library/word.tcl index edcb93a..c18c961 100644 --- a/library/word.tcl +++ b/library/word.tcl @@ -10,12 +10,12 @@ # See the file "license.terms" for information on usage and redistribution # of this file, and for a DISCLAIMER OF ALL WARRANTIES. # -# RCS: @(#) $Id: word.tcl,v 1.7 2002/11/01 00:28:51 andreas_kupries Exp $ +# RCS: @(#) $Id: word.tcl,v 1.7.2.1 2005/07/22 21:59:41 dgp Exp $ # The following variables are used to determine which characters are # interpreted as white space. -if {[string equal $::tcl_platform(platform) "windows"]} { +if {$::tcl_platform(platform) eq "windows"} { # Windows style - any but a unicode space char set tcl_wordchars "\\S" set tcl_nonwordchars "\\s" @@ -58,7 +58,7 @@ proc tcl_wordBreakAfter {str start} { proc tcl_wordBreakBefore {str start} { global tcl_nonwordchars tcl_wordchars - if {[string equal $start end]} { + if {$start eq "end"} { set start [string length $str] } if {[regexp -indices "^.*($tcl_wordchars$tcl_nonwordchars|$tcl_nonwordchars$tcl_wordchars)" [string range $str 0 $start] result]} { @@ -120,7 +120,7 @@ proc tcl_startOfNextWord {str start} { proc tcl_startOfPreviousWord {str start} { global tcl_nonwordchars tcl_wordchars - if {[string equal $start end]} { + if {$start eq "end"} { set start [string length $str] } if {[regexp -indices \ |