+3  A: 

First, check CPAN to see what the current version of Tk is. At the time of this response, it's 804.028, so it's possible that your bug has been fixed. You can check the Tk bug queue to see the state of reported bugs, although I don't know if your specific one was ever entered in the queue. You can also check the Changes file for the release to see if your issue is mentioned there.

If you don't see anything specific, you might note that the author of your quoted message is the maintainer of Tk, so it's likely that the patch has been applied. :)

Tk is a distribution. You can't upgrade individual modules.

Check the Perl/Platform Version Matrix to see which versions of Tk work on which platforms and under what versions of Perl.

If you absolutely must apply just this one change, download the source for the version of Tk you're using, apply the patch, and rebuild it.

Michael Carman
Michael, thanks for the comments. How would I upgrade the Tk distribution from 804.027 to 804.028 if it is included? If it is not and I want just the patch, how do I do what you are suggesting in the last sentence? What the steps?
Streamline
If you're running ActivePerl, use the `ppm` utility that ships with it. Otherwise, try the `cpan` shell. If all else fails, download the distro, unzip it, and do the `make`, `make test`, `make install` dance.
Michael Carman