diff mbox series

[bug#61941,2/2] gnu: Remove unused emacs-helpful-fix-docstring-test.patch.

Message ID 04d652b97d0cb534e1963263ad5e2ca6b4e52c15.1677862554.git.contact@conses.eu
State New
Headers show
Series [bug#61941,1/2] gnu: emacs-helpful: Update to 0.20.1c98f6f. | expand

Commit Message

Miguel Ángel Moreno March 3, 2023, 4:59 p.m. UTC
---
 .../emacs-helpful-fix-docstring-test.patch     | 18 ------------------
 1 file changed, 18 deletions(-)
 delete mode 100644 gnu/packages/patches/emacs-helpful-fix-docstring-test.patch
diff mbox series

Patch

diff --git a/gnu/packages/patches/emacs-helpful-fix-docstring-test.patch b/gnu/packages/patches/emacs-helpful-fix-docstring-test.patch
deleted file mode 100644
index de40010fa2..0000000000
--- a/gnu/packages/patches/emacs-helpful-fix-docstring-test.patch
+++ /dev/null
@@ -1,18 +0,0 @@ 
-This patch fixing a build failure has been cherry-picked from upstream.
-Originally submitted as pull request by Erik Šabič.
-See also <https://github.com/Wilfred/helpful/pull/296>.
-diff --git a/test/helpful-unit-test.el b/test/helpful-unit-test.el
-index a07aa8e..8a95129 100644
---- a/test/helpful-unit-test.el
-+++ b/test/helpful-unit-test.el
-@@ -119,7 +119,9 @@ bar")))
-   (should
-    (equal
-     (helpful--docstring #'test-foo-advised t)
--    "Docstring here too.")))
-+    (if (version< emacs-version "28")
-+        "Docstring here too."
-+    "Docstring here too.\n\nThis function has :around advice: `ad-Advice-test-foo-advised'."))))
- 
- (defun test-foo-no-docstring ()
-   nil)