lilyp pushed a commit to branch emacs-team in repository guix. commit 9415fae5e0517c4276e06f38419a8e4696c69f4b Author: Liliana Marie Prikler <liliana.prik...@gmail.com> 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)