aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--coq.el9
1 files changed, 7 insertions, 2 deletions
diff --git a/coq.el b/coq.el
index e0091b70..4374fcbf 100644
--- a/coq.el
+++ b/coq.el
@@ -3,6 +3,9 @@
;; Author: Healfdene Goguen and Thomas Kleymann
;; $Log$
+;; Revision 1.17 1998/05/06 15:29:11 hhg
+;; Added coq-info-dir so that script-management.info can be hard-coded.
+;;
;; Revision 1.16 1998/05/05 14:21:48 hhg
;; Made updates to fix problem with Definition, which couldn't be
;; used with proof scripts.
@@ -91,6 +94,8 @@
(defvar coq-tags "/obj/local/coq/V6.2/theories/TAGS"
"the default TAGS table for the Coq library")
+(defconst coq-info-dir "/usr/local/share/info")
+
(defconst coq-process-config nil
"Command to configure pretty printing of the Coq process for emacs.")
@@ -630,8 +635,8 @@
tag-table-alist)))
;; Info
- (setq Info-directory-list
- (cons "/home/hhg/src/doc/info" Info-directory-list))
+ (if (not (memq coq-info-dir Info-directory-list))
+ (setq Info-directory-list (cons coq-info-dir Info-directory-list)))
;; keymaps and menus
(easy-menu-add coq-mode-menu coq-mode-map)