aboutsummaryrefslogtreecommitdiffhomepage
path: root/coq/coq-seq-compile.el
diff options
context:
space:
mode:
authorGravatar Hendrik Tews <hendrik@askra.de>2012-11-03 21:12:02 +0000
committerGravatar Hendrik Tews <hendrik@askra.de>2012-11-03 21:12:02 +0000
commitf7d28e6a8f9bc683b093628c9bbc38322ae4fd50 (patch)
treebbb25fc21c831927f51d318e2186cf0ce0b389e2 /coq/coq-seq-compile.el
parentc3fafdf54d54c78124e76a72f4ecacb43dc5fcf1 (diff)
make coq-include-options independent of current buffer
Diffstat (limited to 'coq/coq-seq-compile.el')
-rw-r--r--coq/coq-seq-compile.el5
1 files changed, 3 insertions, 2 deletions
diff --git a/coq/coq-seq-compile.el b/coq/coq-seq-compile.el
index 4756d382..2dd1e954 100644
--- a/coq/coq-seq-compile.el
+++ b/coq/coq-seq-compile.el
@@ -82,7 +82,8 @@ dependencies are absolute too and the simplified treatment of
`coq-load-path-include-current' in `coq-include-options' won't
break."
(let ((coqdep-arguments
- (nconc (coq-include-options lib-src-file) (list lib-src-file)))
+ (nconc (coq-include-options lib-src-file coq-load-path)
+ (list lib-src-file)))
coqdep-status coqdep-output)
(if coq-debug-auto-compilation
(message "call coqdep arg list: %s" coqdep-arguments))
@@ -119,7 +120,7 @@ break."
Display errors in buffer `coq-compile-response-buffer'."
(message "Recompile %s" src-file)
(let ((coqc-arguments
- (nconc (coq-include-options src-file) (list src-file)))
+ (nconc (coq-include-options src-file coq-load-path) (list src-file)))
coqc-status)
(coq-init-compile-response-buffer
(mapconcat 'identity (cons coq-compiler coqc-arguments) " "))