diff options
author | Kyle Meyer <kyle@kyleam.com> | 2021-02-21 22:48:07 -0500 |
---|---|---|
committer | Kyle Meyer <kyle@kyleam.com> | 2021-02-22 00:00:46 -0500 |
commit | 49ca9535d1eab05afbe5d1a67ae841c77bfb16a1 (patch) | |
tree | 422c4caf33bf86ef05d815a3524c90e9802f145e /piem.el | |
parent | f784460e5fd99619070a302dfc22d24d54336ede (diff) | |
download | piem-49ca9535d1eab05afbe5d1a67ae841c77bfb16a1.tar.gz |
Require Transient 0.3.0
Transient 0.3.0 was just released. Require it, and stop using now
obsolete macros.
Message-Id: <20210222034807.23437-1-kyle@kyleam.com>
Diffstat (limited to 'piem.el')
-rw-r--r-- | piem.el | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -5,7 +5,7 @@ ;; Author: Kyle Meyer <kyle@kyleam.com> ;; Keywords: vc, tools ;; Version: 0.1.0 -;; Package-Requires: ((emacs "26.3") (transient "0.2.0")) +;; Package-Requires: ((emacs "26.3") (transient "0.3.0")) ;; Homepage: https://git.kyleam.com/piem/about/ ;; This program is free software; you can redistribute it and/or modify @@ -828,7 +828,7 @@ this triggers the creation of a new worktree." ;;;; Dispatch ;;;###autoload (autoload 'piem-dispatch "piem" nil t) -(define-transient-command piem-dispatch () +(transient-define-prefix piem-dispatch () "Invoke a piem command." [[("a" "apply patch" piem-am) ("b" "call b4-am" piem-b4-am)] |