diff mbox series

[bug#39088,Nicolò,Balzarotti] gnu: emacs-undo-tree: Update to 0.7.1.

Message ID 877e1y3yqa.fsf@guixSD.i-did-not-set--mail-host-address--so-tickle-me
State Accepted
Headers show
Series [bug#39088,Nicolò,Balzarotti] gnu: emacs-undo-tree: Update to 0.7.1. | expand

Checks

Context Check Description
cbaines/applying patch fail Apply failed

Commit Message

Nicolò Balzarotti Jan. 11, 2020, 1:32 p.m. UTC
Hello!
After recent emacs undo-tree.el update to 0.7 I've experienced some
problem.
(like: undo-tree-move-GC-elts-to-pool: Wrong type argument: hash-table-p, nil).
Hopefully those are fixed by the new 0.7.1 release!

Here's a patch for it,
Thanks, Nicolò

Comments

David Wilson Jan. 11, 2020, 1:52 p.m. UTC | #1
Hi Nicolò!

Thanks for sending this patch, after building successfully I pushed it
to master with commit efc32ed8904ca1bbf2123ff1c64782329d7c9941.

Thanks!

David
diff mbox series

Patch

From c6804d14b20cb86a55c1f22c9cc6345b417224b6 Mon Sep 17 00:00:00 2001
From: nixo <nicolo@nixo.xyz>
Date: Sat, 11 Jan 2020 14:19:39 +0100
Subject: [PATCH] gnu: emacs-undo-tree: Update to 0.7.1.
To: guix-patches@gnu.org

* gnu/packages/emacs-xyz.scm (emacs-undo-tree): Update to 0.7.1.
---
 gnu/packages/emacs-xyz.scm | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 558f315d45..8b38a28cb2 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -2294,16 +2294,16 @@  in the center.")
 (define-public emacs-undo-tree
   (package
     (name "emacs-undo-tree")
-    (version "0.7")
+    (version "0.7.1")
     (source (origin
               (method git-fetch)
               (uri (git-reference
                     (url "http://dr-qubit.org/git/undo-tree.git")
-                    (commit (string-append "release-" version))))
+                    (commit (string-append "release/" version))))
               (file-name (git-file-name name version))
               (sha256
                (base32
-                "1m02v7qhcbqv5gb0vdmf44vhqisf2pv6419dzjfpxcmwlmdm0z7a"))))
+                "1nr0149y2nvrxj56gc12jqnfl01g6z9ypfsgl6pfg85cw73hnggk"))))
     (build-system emacs-build-system)
     (home-page "http://www.dr-qubit.org/emacs.php")
     (synopsis "Treat undo history as a tree")
-- 
2.24.1