diff options
-rw-r--r-- | ChangeLog | 10 | ||||
-rw-r--r-- | generic/tkBind.c | 3 |
2 files changed, 12 insertions, 1 deletions
@@ -1,3 +1,13 @@ +2008-04-10 Daniel Steffen <das@users.sourceforge.net> + + * generic/tkBind.c (HandleEventGenerate): ensure window exists before + generating an event for it (fixes testsuite crash). + + * generic/tkTextBTree.c (TkBTreeDeleteIndexRange): add bounds check + to startEnd array access (fixes testsuite crash). + + * tests/unixFont.test: only use xlsfonts with X11 windowingsystem. + 2009-04-10 Donal K. Fellows <dkf@users.sf.net> * library/tk.tcl: [Bug 2116837]: Add event definitions to handle the diff --git a/generic/tkBind.c b/generic/tkBind.c index 0d542b0..4468793 100644 --- a/generic/tkBind.c +++ b/generic/tkBind.c @@ -11,7 +11,7 @@ * See the file "license.terms" for information on usage and redistribution of * this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tkBind.c,v 1.52 2009/01/09 07:03:31 nijtmans Exp $ + * RCS: @(#) $Id: tkBind.c,v 1.53 2009/04/10 15:54:07 das Exp $ */ #include "tkInt.h" @@ -3325,6 +3325,7 @@ HandleEventGenerate( event.xany.serial = NextRequest(Tk_Display(tkwin)); event.xany.send_event = False; if (windowName[0]) { + Tk_MakeWindowExist(tkwin); event.xany.window = Tk_WindowId(tkwin); } else { event.xany.window = |