diff options
Diffstat (limited to 'library/spinbox.tcl')
-rw-r--r-- | library/spinbox.tcl | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/library/spinbox.tcl b/library/spinbox.tcl index 06c002c..641584d 100644 --- a/library/spinbox.tcl +++ b/library/spinbox.tcl @@ -376,7 +376,8 @@ proc ::tk::spinbox::ButtonDown {w x y} { $w selection clear } default { - return -code error "unknown spinbox element \"$Priv(element)\"" + return -code error -errorcode {TK SPINBOX UNKNOWN_ELEMENT} \ + "unknown spinbox element \"$Priv(element)\"" } } } |