petasis / tkdnd

TkDND is an extension that adds native drag & drop capabilities to the Tk toolkit
https://sourceforge.net/projects/tkdnd/
Other
106 stars 24 forks source link

Error on 'entier' in SetPressedKeys #44

Closed rjkg closed 4 years ago

rjkg commented 4 years ago

MacOS Sierra, Tcl 8.5.9 Demo 'simple_target.tcl' failed with error on generic::SetPressedKeys - 'entier'

bad class "entier": must be alnum, alpha, ascii, control, boolean, digit, double, false, graph, integer, list, lower, print, punct, space, true, upper, wideinteger, wordchar, or xdigit

if {[string is entier -strict $b]} {....

Replacing 'entier' with 'integer' appears to have fixed the problem.

flopp commented 4 years ago

string is entier ... has been added to Tcl in 8.6.0 (https://core.tcl-lang.org/tips/doc/trunk/tip/395.md)

petasis commented 4 years ago

Fixed.