diff options
| author | Pierre Courtieu | 2016-03-08 10:31:40 +0100 |
|---|---|---|
| committer | Pierre Courtieu | 2016-03-08 10:31:40 +0100 |
| commit | 29ed26c5e3fb7ee1e4b284b0b2ce6dd782fc288b (patch) | |
| tree | 8e876487cc37d23de1fa565dea7f2641f7cc50a7 | |
| parent | 16991280fb09743ae7320aef77f6a166afb907d7 (diff) | |
Small fix for -Q options in loadpath.
| -rw-r--r-- | coq/coq-system.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/coq/coq-system.el b/coq/coq-system.el index f13a0f1e..2a803f36 100644 --- a/coq/coq-system.el +++ b/coq/coq-system.el @@ -259,7 +259,7 @@ request compatibility handling of flags." (list "-R" (expand-file-name dir) alias))) (pcase entry ((and (pred stringp) dir) - (list "-Q" (expand-file-name dir) "")) + (list "-Q" (expand-file-name dir) "\"\"")) (`(ocamlimport ,dir) (list "-I" (expand-file-name dir))) (`(recnoimport ,dir ,alias) |
