emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

master 8fb761a: Fix undefined function in project-compile


From: Lars Ingebrigtsen
Subject: master 8fb761a: Fix undefined function in project-compile
Date: Thu, 15 Oct 2020 07:20:35 -0400 (EDT)

branch: master
commit 8fb761af6b9576022170aeb8278a8e27cd1d2be5
Author: Lars Ingebrigtsen <larsi@gnus.org>
Commit: Lars Ingebrigtsen <larsi@gnus.org>

    Fix undefined function in project-compile
    
    * lisp/progmodes/project.el (project-compile): Require compile.el
    before using functions from the file (bug#44009).
---
 lisp/progmodes/project.el | 1 +
 1 file changed, 1 insertion(+)

diff --git a/lisp/progmodes/project.el b/lisp/progmodes/project.el
index 40a804b..8f7482a 100644
--- a/lisp/progmodes/project.el
+++ b/lisp/progmodes/project.el
@@ -940,6 +940,7 @@ Arguments the same as in `compile'."
   (interactive
    (list
     (let ((command (eval compile-command)))
+      (require 'compile)
       (if (or compilation-read-command current-prefix-arg)
          (compilation-read-command command)
        command))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]