aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Aspinall1998-09-23 11:05:03 +0000
committerDavid Aspinall1998-09-23 11:05:03 +0000
commit7c7ce3612b2c4d864c77cd3ffb6c16ee15e07cfb (patch)
tree820cc6b3356a21b5498d9f7ac9cb1f38bb0c032d
parent06a69df0a01bc949bc7277bcb29a8ce29226d500 (diff)
Removed "myass" test entry.
-rw-r--r--generic/proof-site.el40
1 files changed, 20 insertions, 20 deletions
diff --git a/generic/proof-site.el b/generic/proof-site.el
index 9e4a89c2..a9407fa7 100644
--- a/generic/proof-site.el
+++ b/generic/proof-site.el
@@ -13,6 +13,26 @@
(defvar sym val doc))
(defmacro group (sym mems doc &rest args)))
+;; Master table of supported assistants.
+(defconst proof-general-supported-assistants
+ '((isa "Isabelle" "\\.ML$\\|\\.thy$")
+ (lego "LEGO" "\\.l$")
+ (coq "Coq" "\\.v"))
+ "Table of supported proof assistants.
+Each entry is a list of the form
+
+ (SYMBOL NAME AUTOLOAD-REGEXP)
+
+The NAME is a string, naming the proof assistant.
+The SYMBOL is used to form the name of the mode for the
+assistant, `SYMBOL-mode`, run when files with AUTOLOAD-REGEXP
+are loaded. It is also used to form the name of the
+directory and elisp file for the mode, which will be
+
+ <proof-home>/SYMBOL/SYMBOL.el
+
+where `<proof-home>/' is the value of the variable proof-home.")
+
(defgroup proof-general nil
"Customization of generic parameters for Proof General."
:group 'external
@@ -53,26 +73,6 @@ You can use customize to set this variable."
Info-default-directory-list
(list proof-info-dir))))
-(defconst proof-general-supported-assistants
- '((isa "Isabelle" "\\.ML$\\|\\.thy$")
- (lego "LEGO" "\\.l$")
- (coq "Coq" "\\.v")
- (myass "myass" "\\.myass"))
- "Table of supported proof assistants.
-Each entry is a list of the form
-
- (SYMBOL NAME AUTOLOAD-REGEXP)
-
-The NAME is a string, naming the proof assistant.
-The SYMBOL is used to form the name of the mode for the
-assistant, `SYMBOL-mode`, run when files with AUTOLOAD-REGEXP
-are loaded. It is also used to form the name of the
-directory and elisp file for the mode, which will be
-
- <proof-home>/SYMBOL/SYMBOL.el
-
-where `<proof-home>/' is the value of the variable proof-home.")
-
(defcustom proof-assistants
(mapcar (lambda (astnt) (car astnt)) proof-general-supported-assistants)
(concat