projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
674fee5
)
Fix undefined function in project-compile
author
Lars Ingebrigtsen
<larsi@gnus.org>
Thu, 15 Oct 2020 11:20:22 +0000
(13:20 +0200)
committer
Lars Ingebrigtsen
<larsi@gnus.org>
Thu, 15 Oct 2020 11:20:22 +0000
(13:20 +0200)
* lisp/progmodes/project.el (project-compile): Require compile.el
before using functions from the file (bug#44009).
lisp/progmodes/project.el
patch
|
blob
|
history
diff --git
a/lisp/progmodes/project.el
b/lisp/progmodes/project.el
index 40a804b00ec542eca4dbe75cd344aa79b99662bc..8f7482a23d7306855bb3fecad3c5a3190a62f278 100644
(file)
--- 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))