diff options
author | yoctocell <public@yoctocell.xyz> | 2021-01-04 14:04:05 +0100 |
---|---|---|
committer | yoctocell <public@yoctocell.xyz> | 2021-01-04 14:04:05 +0100 |
commit | 6f7466ea2815502d3cf0ecab5d065af61191bd9d (patch) | |
tree | 87809a92db7d69430cf7d02ad28a00a99d46de14 | |
parent | ee5363ad7738c3a9ae6312191ba56ffc9bfc2f42 (diff) |
Require project
Add project.el as a dependency
* git-email.el:
-rw-r--r-- | git-email.el | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/git-email.el b/git-email.el index d5fb75e..ee65fd5 100644 --- a/git-email.el +++ b/git-email.el @@ -5,7 +5,7 @@ ;; Author: yoctocell <public@yoctocell.xyz> ;; URL: https://git.sr.ht/~yoctocell/git-email ;; Version: 0.1.0 -;; Package-Requires: ((emacs "25.1")) +;; Package-Requires: ((emacs "25.1") (project "0.5.0")) ;; Keywords: git email ;; License: GNU General Public License >= 3 @@ -40,6 +40,8 @@ ;;; Code: +(require 'project) + (defgroup git-email nil "Work with git and email." :group 'convenience) |