diff options
author | Tino Calancha <tino.calancha@gmail.com> | 2017-04-30 11:33:37 +0900 |
---|---|---|
committer | Tino Calancha <tino.calancha@gmail.com> | 2017-04-30 11:33:37 +0900 |
commit | b57e03f99803fe4cb801d98269c18803a73928c5 (patch) | |
tree | 1072b993c17d2d6f4617c6072bff0bc37a3e4df4 | |
parent | ce16aba66d39c076aeef0c898403e44cbfbfabbb (diff) | |
download | emacs-b57e03f99803fe4cb801d98269c18803a73928c5.tar.gz |
Fix dependency error during bootstrap
* lisp/files.el: Require pcase and easy-mmode at compile time.
-rw-r--r-- | lisp/files.el | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lisp/files.el b/lisp/files.el index af2a713822d..0978fa254f6 100644 --- a/lisp/files.el +++ b/lisp/files.el @@ -28,6 +28,10 @@ ;;; Code: +(eval-when-compile + (require 'pcase) + (require 'easy-mmode)) ; For `define-minor-mode'. + (defvar font-lock-keywords) (defgroup backup nil |