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)) 5e3dcfd09bc884764b28deb'>treecommitdiff
path: root/gnu/packages/tls.scm
AgeCommit message (Expand)Author
2023-07-20gnu: openssl-1.1: Fix shared build for the Hurd....* gnu/packages/tls.scm (openssl-1.1)[arguments]: When building for the Hurd, add phase 'patch-configure'. (openssl)[arguments]: And delete it again. Janneke Nieuwenhuizen
2023-07-20gnu: openssl: Build fix for the Hurd....* gnu/packages/tls.scm (openssl-3.0)[arguments]: When building on the Hurd, add "hurd-x86" to #:configure-flags. Janneke Nieuwenhuizen
2023-06-25gnu: aws-lc: Fix tests....* gnu/packages/tls.scm (aws-lc)[native-inputs]: Add libfaketime. [arguments]<#:phases>: Replace and wrap 'check with faketime due to certificate expiration. Signed-off-by: Ludovic Courtès <ludo@gnu.org> Greg Hogan
2023-06-17gnu: Use target-hurd?, system-hurd? instead of hurd-target?, hurd-system?....* gnu/packages/hurd.scm (hurd-target?): Remove. (hurd-system?): Move to... * guix/utils.scm (system-hurd?): ...here. * gnu/packages/*: Update all users, removing (gnu packages hurd) include where now unused. Janneke Nieuwenhuizen