unless either `gtk' is boundp or this isn't a `windows-nt' build.
+2005-06-13 Eli Zaretskii <eliz@gnu.org>
+
+ * cus-start.el (all): Don't complain about missing GTK-related
+ variables, unless either `gtk' is boundp or this isn't a
+ `windows-nt' build.
+
2005-06-13 Lute Kamstra <lute@gnu.org>
* woman.el (woman-mode-line-format): Delete constant.
(eq system-type 'ms-dos))
((string-match "\\`w32-" (symbol-name symbol))
(eq system-type 'windows-nt))
+ ((string-match "\\`x-.*gtk" (symbol-name symbol))
+ (or (boundp 'gtk) (not (eq system-type 'windows-nt))))
((string-match "\\`x-" (symbol-name symbol))
(fboundp 'x-create-frame))
(t t))))