lilyp pushed a commit to branch emacs-team
in repository guix.
commit 28cbd6ab5f3ddacd4248c5909ae1a8bb3ff30fcd
Author: Liliana Marie Prikler <[email protected]>
AuthorDate: Sun Mar 2 11:10:03 2025 +0100
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’.
---
gnu/packages/aux-files/emacs/comp-integrity.el | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
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)