diff options
| author | Clément Pit-Claudel | 2018-09-27 17:45:38 -0400 |
|---|---|---|
| committer | GitHub | 2018-09-27 17:45:38 -0400 |
| commit | 5b7b84bc5b44fd87905b16a67367ece4e7fa7ee3 (patch) | |
| tree | a68c380842e2b2d2f5ec60d579c9804041d30bcc /coq | |
| parent | 65d69a7a6a4a5aa5518fd55671d58b0b4a350fe2 (diff) | |
| parent | 9b3d7e541a43bcc565175d0b4835626365cfeba2 (diff) | |
Merge pull request #393 from anton-trunov/fix-coqproject-arg
Fix parsing of -arg in _CoqProject file
Diffstat (limited to 'coq')
| -rw-r--r-- | coq/coq-system.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/coq/coq-system.el b/coq/coq-system.el index 63ee57ac..e3164644 100644 --- a/coq/coq-system.el +++ b/coq/coq-system.el @@ -514,8 +514,8 @@ coqtop." (push opt args)) (`("-arg" ,concatenated-args) (setq args - (append (split-string-and-unquote (cadr opt) coq--project-file-separator) - args))))) + (append args + (split-string-and-unquote (cadr opt) coq--project-file-separator)))))) (cons "-emacs" args))) (defun coq--extract-load-path-1 (option base-directory) |
