From d7b54784bc3962570519aac472f54598c10299ae Mon Sep 17 00:00:00 2001 From: Alex Kost Date: Thu, 3 Jan 2019 20:34:56 +0300 Subject: [PATCH] elisp/popup: Add missing "require" Reported by zimoun: . * elisp/guix-popup.el: Require 'guix-profiles', otherwise, "M-x guix p" errors. --- elisp/guix-popup.el | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/elisp/guix-popup.el b/elisp/guix-popup.el index 5e26b3d..af0a088 100644 --- a/elisp/guix-popup.el +++ b/elisp/guix-popup.el @@ -1,6 +1,6 @@ ;;; guix-popup.el --- Popup interface for Emacs-Guix commands -;; Copyright © 2018 Alex Kost +;; Copyright © 2018–2019 Alex Kost ;; This file is part of Emacs-Guix. @@ -25,6 +25,7 @@ ;;; Code: (require 'magit-popup) +(require 'guix-profiles) (defgroup guix-popup nil "Popup interface for Emacs-Guix commands."