diff options
Diffstat (limited to 'library/tk.tcl')
-rw-r--r-- | library/tk.tcl | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/library/tk.tcl b/library/tk.tcl index cac9075..e0d9eda 100644 --- a/library/tk.tcl +++ b/library/tk.tcl @@ -213,7 +213,8 @@ if {[tk windowingsystem] ne "win32"} { } txt] && [catch { selection get -displayof $w -selection $sel } txt]} then { - return -code error "could not find default selection" + return -code error -errorcode {TK SELECTION NONE} \ + "could not find default selection" } else { return $txt } @@ -223,7 +224,8 @@ if {[tk windowingsystem] ne "win32"} { if {[catch { selection get -displayof $w -selection $sel } txt]} then { - return -code error "could not find default selection" + return -code error -errorcode {TK SELECTION NONE} \ + "could not find default selection" } else { return $txt } |