diff options
| author | Jonas Bernoulli <jonas@bernoul.li> | 2015-01-10 17:09:15 +0100 |
|---|---|---|
| committer | Jonas Bernoulli <jonas@bernoul.li> | 2015-01-10 17:09:15 +0100 |
| commit | 99993170cc6e6cf89eaf869e3a8f1cd780ecd80b (patch) | |
| tree | 600f792cafd9761326a7fac182b5f49efe6d4df3 | |
| parent | f0160c237aa68402541e3c7a1b59f6032edf7fe5 (diff) | |
magit-popup.el: don't require magit-mode
According to the byte-compiler and some grepping,
nothing from the latter is used in the former.
| -rw-r--r-- | Makefile | 2 | ||||
| -rw-r--r-- | magit-popup.el | 5 |
2 files changed, 2 insertions, 5 deletions
@@ -10,11 +10,11 @@ LOADDEFS_DIR ?= $(lispdir) ELS = with-editor.el ELS += git-commit.el ELS += git-rebase.el +ELS += magit-popup.el ELS += magit-utils.el ELS += magit-section.el ELS += magit-git.el ELS += magit-mode.el -ELS += magit-popup.el ELS += magit-process.el ELS += magit-core.el ELS += magit-diff.el diff --git a/magit-popup.el b/magit-popup.el index 989ff8e..1e9dd39 100644 --- a/magit-popup.el +++ b/magit-popup.el @@ -45,12 +45,9 @@ ;;; Code: +(require 'button) (require 'cl-lib) (require 'dash) - -(require 'magit-mode) - -(require 'button) (require 'format-spec) (declare-function info 'info) |
