diff options
| author | David Aspinall | 2008-01-31 21:56:36 +0000 |
|---|---|---|
| committer | David Aspinall | 2008-01-31 21:56:36 +0000 |
| commit | 1bfd9faf032ec2a92f8c14ae4327a6bcfb7772c8 (patch) | |
| tree | c12f4e143b05e8f12efd3b924f02c3e040c5aa18 | |
| parent | e28ca43a04cb004ef958dd56116475a0655eebb3 (diff) | |
Revert last change, shell-command-to-string gives error when called
with c:\Program Files\blah due to space in filename. Code here needs
reworking more heavily for out-of-the-box Windows working.
| -rw-r--r-- | coq/coq.el | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -133,7 +133,7 @@ On Windows you might need something like: (setq tags-always-exact t) ; Tags is unusable with Coq library otherwise: (defun coq-library-directory () - (let ((c (substring (shell-command-to-string (concat coq-prog-name " -where")) 0 -1 ))) + (let ((c (substring (shell-command-to-string "coqtop -where") 0 -1 ))) (if (string-match c "not found") "/usr/local/lib/coq" c))) |
