From 233e254bbe44f70ca899a506b3706af489228fda Mon Sep 17 00:00:00 2001 From: aagon Date: Thu, 10 Aug 2023 20:03:52 +0200 Subject: [PATCH] Repair helpful--display-implementations test for emacs 29.1 --- test/helpful-unit-test.el | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/test/helpful-unit-test.el b/test/helpful-unit-test.el index 0f5177b..0716b0d 100644 --- a/test/helpful-unit-test.el +++ b/test/helpful-unit-test.el @@ -1089,8 +1089,12 @@ find the source code." (require 'xref) (helpful-function 'xref-location-marker) (should (s-contains-p "Implementations" (buffer-string))) - (should (s-contains-p "((l xref-file-location))" (buffer-string))) - (should (s-contains-p "((l xref-buffer-location))" (buffer-string)))) + (should (if (version< emacs-version "29.1") + (s-contains-p "((l xref-file-location))" (buffer-string)) + (s-contains-p "(xref-location-marker (L xref-file-location))" (buffer-string)))) + (should (if (version< emacs-version "29.1") + (s-contains-p "((l xref-buffer-location))" (buffer-string)) + (s-contains-p "(xref-location-marker (L xref-buffer-location))" (buffer-string))))) (defun helpful--boring-advice (orig-fn &rest args) (apply orig-fn args)) >commitdiff
path: root/configure.ac
AgeCommit message (Expand)Author
2020-10-22git: Require Guile-Git 0.3.0 or later....Ludovic Courtès
2020-10-05build: Use a 'guile' executable that doesn't warn about locales....Ludovic Courtès
2020-08-29build: Remove references to the 'nix-hash' program....Ludovic Courtès
2020-08-29build: Remove check for Guile 2.2.1 bug....Ludovic Courtès
2020-08-24Use "guile-zlib" and "guile-lzlib" instead of (guix config)....Mathieu Othacehe
2020-06-16etc: Add committer script....Ricardo Wurmus
2020-05-28maint: Check whether Guile-Gcrypt is recent enough....Ludovic Courtès
2020-05-14etc: indent-code.el: Use the --quick option....Maxim Cournoyer
2020-04-23build: Don't build man pages when cross-compiling....Ludovic Courtès
2020-03-11build: Require Guile 2.2.3 or later....Ludovic Courtès
2020-01-17build: Allow builds with Guile 3.0....Ludovic Courtès
2019-11-09build: Warn about etc/indent-code.el when Emacs is absent....zimoun
2019-07-25maint: Switch to Guile-JSON 3.x....Ludovic Courtès
2019-05-06Add (guix lzlib)....Pierre Neidhardt
2019-04-17build: No longer substitute 'LIBGCRYPT'....Ludovic Courtès
2019-01-17configure: Disable installer build by default....Mathieu Othacehe
2019-01-17gnu: Add graphical installer support....Mathieu Othacehe