Fix inverted condition on +tree for undo module

This commit is contained in:
Henrik Lissner 2020-04-14 00:27:11 -04:00
parent 428cb15c7a
commit 9b3d8dc1bd
No known key found for this signature in database
GPG key ID: 5F6C0EA160557395

View file

@ -1,7 +1,7 @@
;; -*- no-byte-compile: t; -*- ;; -*- no-byte-compile: t; -*-
;;; emacs/undo/packages.el ;;; emacs/undo/packages.el
(if (not (featurep! +tree)) (if (featurep! +tree)
(package! undo-tree :pin "5b6df03781") (package! undo-tree :pin "5b6df03781")
(package! undo-fu :pin "0c34b6747e") (package! undo-fu :pin "0c34b6747e")
(package! undo-fu-session :pin "b808ef0cdc")) (package! undo-fu-session :pin "b808ef0cdc"))