aboutsummaryrefslogtreecommitdiffhomepage
path: root/coq/coq-local-vars.el
diff options
context:
space:
mode:
authorGravatar Pierre Courtieu <courtieu@lri.fr>2006-08-25 08:37:23 +0000
committerGravatar Pierre Courtieu <courtieu@lri.fr>2006-08-25 08:37:23 +0000
commita82daf51268be086f3da32294d7e91170426cba7 (patch)
tree53663099da87121c748eb02d56d8da95fbd71590 /coq/coq-local-vars.el
parent11befe15a85ab4120bb251be9443d9c0834db3ef (diff)
Fixed a small bug in indentation of coq.
Fixed behavior for making abbrev table (don't if it already exists).
Diffstat (limited to 'coq/coq-local-vars.el')
-rw-r--r--coq/coq-local-vars.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/coq/coq-local-vars.el b/coq/coq-local-vars.el
index 5477629e..ba52abf9 100644
--- a/coq/coq-local-vars.el
+++ b/coq/coq-local-vars.el
@@ -124,10 +124,10 @@ will be used to suggest values to the user."
(setq progargs (cons (car olddirs) (cons "-I" progargs))))
(setq olddirs (cdr olddirs)))
;; then ask for more
- (setq option (coq-read-directory "Add directory (empty to stop) :"))
+ (setq option (coq-read-directory "Add directory (tab to complete, empty to stop) :"))
(while (not (string-equal option ""))
(setq progargs (cons option (cons "-I" progargs))) ;reversed
- (setq option (coq-read-directory "Add directory (empty to stop) -I :")))
+ (setq option (coq-read-directory "Add directory (tab to complete, empty to stop) -I :")))
(reverse progargs)))
(defun coq-ask-prog-name (&optional oldvalue)