From f7c3d628333e051c18b0493271b23f27933f2598 Mon Sep 17 00:00:00 2001 From: Po Lu Date: Sat, 8 Jan 2022 15:30:02 +0800 Subject: [PATCH] * lisp/cus-start.el (standard): Fix standard customizables for PGTK. --- lisp/cus-start.el | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lisp/cus-start.el b/lisp/cus-start.el index 4227cec425c..cdadf08a894 100644 --- a/lisp/cus-start.el +++ b/lisp/cus-start.el @@ -856,6 +856,9 @@ since it could result in memory overflow and make Emacs crash." (featurep 'ns)) ((string-match "\\`haiku-" (symbol-name symbol)) (featurep 'haiku)) + ((eq symbol 'x-gtk-use-native-input) + (and (featurep 'x) + (featurep 'gtk))) ((string-match "\\`x-.*gtk" (symbol-name symbol)) (featurep 'gtk)) ((string-match "clipboard-manager" (symbol-name symbol)) -- 2.39.2