diff options
author | Liliana Marie Prikler <liliana.prikler@gmail.com> | 2024-03-02 17:13:32 +0100 |
---|---|---|
committer | Liliana Marie Prikler <liliana.prikler@gmail.com> | 2024-03-02 18:04:22 +0100 |
commit | 84e125eb27bc97dc00c260bb03238447134f6d5c (patch) | |
tree | 54b29f8bc41f19806cf89072dcc5baed55ac46b0 /gnu/packages/aux-files | |
parent | 7f3f70eedbbec74481a0ca9fea4c19250961685e (diff) | |
download | guix-84e125eb27bc97dc00c260bb03238447134f6d5c.tar.gz guix-84e125eb27bc97dc00c260bb03238447134f6d5c.zip |
gnu: emacs-next-minimal: Update to 30.0.50-2.170c655.
* gnu/packages/emacs.scm (emacs-next-minimal): Update to 30.0.50-2.170c655.
* gnu/packages/aux-files/emacs/comp-integrity.el: Adjust accordingly.
Diffstat (limited to 'gnu/packages/aux-files')
-rw-r--r-- | gnu/packages/aux-files/emacs/comp-integrity.el | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/gnu/packages/aux-files/emacs/comp-integrity.el b/gnu/packages/aux-files/emacs/comp-integrity.el index ed6a348fed..9692d9bf97 100644 --- a/gnu/packages/aux-files/emacs/comp-integrity.el +++ b/gnu/packages/aux-files/emacs/comp-integrity.el @@ -89,7 +89,10 @@ (expect-native mouse-wheel-change-button) (expect-native advice-function-mapc) (expect-native comment-string-strip) -(expect-native obarray-make) +(if (>= emacs-major-version 30) + (expect-builtin obarray-make) + (expect-native obarray-make)) +(expect-native obarray-map) (expect-native oclosure-type) (expect-native forward-page) (expect-native sentence-end) |