diff options
Diffstat (limited to 'lisp/cus-start.el')
-rw-r--r-- | lisp/cus-start.el | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/lisp/cus-start.el b/lisp/cus-start.el index d8ca2a77b58..96a8c5a8b27 100644 --- a/lisp/cus-start.el +++ b/lisp/cus-start.el @@ -366,10 +366,7 @@ since it could result in memory overflow and make Emacs crash." ((string-match "\\`w32-" (symbol-name symbol)) (eq system-type 'windows-nt)) ((string-match "\\`x-.*gtk" (symbol-name symbol)) - (or (boundp 'gtk) - (and window-system - (not (eq window-system 'pc)) - (not (eq system-type 'windows-nt))))) + (featurep 'gtk)) ((string-match "\\`x-" (symbol-name symbol)) (fboundp 'x-create-frame)) ((string-match "selection" (symbol-name symbol)) |