summaryrefslogtreecommitdiffstats
path: root/library
diff options
context:
space:
mode:
authordkf <donal.k.fellows@manchester.ac.uk>2009-12-11 11:18:54 (GMT)
committerdkf <donal.k.fellows@manchester.ac.uk>2009-12-11 11:18:54 (GMT)
commit8ef70f5c995af274332b2892eaf3c2de0acbe378 (patch)
tree01154ec433c8334d004f9a1616186ced8c9481f7 /library
parent05e5b2528aeebef9531982d31a81e30dc807de14 (diff)
downloadtk-8ef70f5c995af274332b2892eaf3c2de0acbe378.zip
tk-8ef70f5c995af274332b2892eaf3c2de0acbe378.tar.gz
tk-8ef70f5c995af274332b2892eaf3c2de0acbe378.tar.bz2
[Bug 2912473]: Stop problems caused by display names with a double colon in.
Diffstat (limited to 'library')
-rw-r--r--library/tk.tcl7
1 files changed, 6 insertions, 1 deletions
diff --git a/library/tk.tcl b/library/tk.tcl
index f656e9a..fbd89f1 100644
--- a/library/tk.tcl
+++ b/library/tk.tcl
@@ -3,7 +3,7 @@
# Initialization script normally executed in the interpreter for each
# Tk-based application. Arranges class bindings for widgets.
#
-# RCS: @(#) $Id: tk.tcl,v 1.46.2.7 2007/04/29 02:24:49 das Exp $
+# RCS: @(#) $Id: tk.tcl,v 1.46.2.8 2009/12/11 11:18:54 dkf Exp $
#
# Copyright (c) 1992-1994 The Regents of the University of California.
# Copyright (c) 1994-1996 Sun Microsystems, Inc.
@@ -242,6 +242,11 @@ proc ::tk::ScreenChanged screen {
set disp $screen
}
+ # Ensure that namespace separators never occur in the display name (as
+ # they cause problems in variable names). Double-colons exist in some VNC
+ # display names. [Bug 2912473]
+ set disp [string map {:: _doublecolon_} $disp]
+
uplevel #0 upvar #0 ::tk::Priv.$disp ::tk::Priv
variable ::tk::Priv
global tcl_platform