summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLiliana Marie Prikler <liliana.prikler@gmail.com>2025-03-02 11:10:03 +0100
committerLiliana Marie Prikler <liliana.prikler@gmail.com>2025-06-15 16:56:45 +0200
commit5421e4a748d2dd9f351af49e809ad2867249af40 (patch)
tree48ee7d85858bdd071d32fb398c738598c2e53aa3
parentcea0ecb60b14fe07ca136bdd67f5dee6530d001f (diff)
gnu: emacs: Allow ‘dnd-open-file’ to be unbound in integrity check.
This fixes the build of emacsen that don't have drag and drop support, such as emacs-no-x. * gnu/packages/aux-files/emacs/comp-integrity.el: Use ‘expect-native-if-bound’ rather than ‘expect-native’ to check for ‘dnd-open-file’.
-rw-r--r--gnu/packages/aux-files/emacs/comp-integrity.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/packages/aux-files/emacs/comp-integrity.el b/gnu/packages/aux-files/emacs/comp-integrity.el
index 74ee0952f4..a53b9dcc5f 100644
--- a/gnu/packages/aux-files/emacs/comp-integrity.el
+++ b/gnu/packages/aux-files/emacs/comp-integrity.el
@@ -39,7 +39,7 @@
(expect-native custom-add-choice)
(expect-native debug-early)
(expect-native display-table-slot disp-table)
-(expect-native dnd-open-file)
+(expect-native-if-bound dnd-open-file)
(expect-native dos-mode25 dos-fns)
(expect-native find-file-text dos-w32)
(expect-native-if-bound dynamic-setting-handle-config-changed-event)