]> git.eshelyaron.com Git - emacs.git/commitdiff
Really make `x-scroll-event-delta-factor' dependent on system
authorPo Lu <luangruo@yahoo.com>
Mon, 29 Nov 2021 10:25:10 +0000 (18:25 +0800)
committerPo Lu <luangruo@yahoo.com>
Mon, 29 Nov 2021 10:27:12 +0000 (18:27 +0800)
* lisp/cus-start.el: Move X specific builtins that start
with "x-" before the catch-all test.

lisp/cus-start.el

index 45b81e5bc5f72371c452fb3b3ede05d25c51453a..33b861b34085715d29382b61f76f57e849c0d027 100644 (file)
@@ -857,6 +857,11 @@ since it could result in memory overflow and make Emacs crash."
                       (featurep 'gtk))
                      ((string-match "clipboard-manager" (symbol-name symbol))
                       (boundp 'x-select-enable-clipboard-manager))
+                      ((or (equal "scroll-bar-adjust-thumb-portion"
+                                 (symbol-name symbol))
+                           (equal "x-scroll-event-delta-factor"
+                                  (symbol-name symbol)))
+                      (featurep 'x))
                      ((string-match "\\`x-" (symbol-name symbol))
                       (fboundp 'x-create-frame))
                      ((string-match "selection" (symbol-name symbol))
@@ -877,11 +882,6 @@ since it could result in memory overflow and make Emacs crash."
                              (symbol-name symbol))
                       ;; Any function from fontset.c will do.
                       (fboundp 'new-fontset))
-                     ((or (equal "scroll-bar-adjust-thumb-portion"
-                                 (symbol-name symbol))
-                           (equal "x-scroll-event-delta-factor"
-                                  (symbol-name symbol)))
-                      (featurep 'x))
                      (t t))))
     (if (not (boundp symbol))
        ;; If variables are removed from C code, give an error here!