diff --git a/distrib/msw/generic.rsp b/distrib/msw/generic.rsp
index 7e61bcc925..ab022228b2 100644
--- a/distrib/msw/generic.rsp
+++ b/distrib/msw/generic.rsp
@@ -13,6 +13,7 @@ mkinstalldirs
modules
template.mak
wx-config.in
+version-script.in
setup.h_vms
distrib/msw/*.rsp
diff --git a/docs/html/faqgtk.htm b/docs/html/faqgtk.htm
index 3c78c002c6..df33965ef4 100644
--- a/docs/html/faqgtk.htm
+++ b/docs/html/faqgtk.htm
@@ -32,6 +32,7 @@ See also top-level FAQ page.
Warning about GTK libraries supplied with RedHat
What range of Intel Linux platforms will a given application binary be usable on?
Can I statically link the GTK+ library?
+Why does my simple program using EVT_CHAR doesn't work?
@@ -97,6 +98,17 @@ the image libraries and std C++ lib)."
No, this is not possible. It leads to crashes in GTK+.
+
+
+In wxGTK, the frames never get focus and so can never receive CHAR
+nor KEY events so an EVT_CHAR handler for a frame will be
+never called. To receive these events, you should create a wxPanel
+inside the frame and register the key event handlers for the panel, not the
+frame.
+
+
+