aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Aspinall2008-01-31 21:56:36 +0000
committerDavid Aspinall2008-01-31 21:56:36 +0000
commit1bfd9faf032ec2a92f8c14ae4327a6bcfb7772c8 (patch)
treec12f4e143b05e8f12efd3b924f02c3e040c5aa18
parente28ca43a04cb004ef958dd56116475a0655eebb3 (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.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/coq/coq.el b/coq/coq.el
index 80ccb539..a923dcba 100644
--- a/coq/coq.el
+++ b/coq/coq.el
@@ -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)))