aboutsummaryrefslogtreecommitdiffhomepage
path: root/doc/ProofGeneral.texi
diff options
context:
space:
mode:
authorGravatar David Aspinall <da@inf.ed.ac.uk>1998-09-23 11:19:12 +0000
committerGravatar David Aspinall <da@inf.ed.ac.uk>1998-09-23 11:19:12 +0000
commit77edfdcacd444e363715e65196d810fdfbbbcff2 (patch)
tree0286356e97f2bb06efc2733113b7e994f2930187 /doc/ProofGeneral.texi
parent97050a21ea2a94f1fd3766d99cd24baa6590c759 (diff)
Added more notes about specialization to new provers.
Diffstat (limited to 'doc/ProofGeneral.texi')
-rw-r--r--doc/ProofGeneral.texi19
1 files changed, 12 insertions, 7 deletions
diff --git a/doc/ProofGeneral.texi b/doc/ProofGeneral.texi
index dba92eb5..4e262243 100644
--- a/doc/ProofGeneral.texi
+++ b/doc/ProofGeneral.texi
@@ -53,10 +53,10 @@ and using ideas from Projet CROAP.
Proof General is suitable for use by pacifists and Emacs lovers alike.
-The code for this Emacs mode is designed to be generic, so you can adapt
-the mode to other proof assistants if you know a little bit of Emacs
-Lisp. Please feel free to download Proof General to customize it for
-another system, and tell us how you get on.
+The code is designed to be generic, so you can adapt Proof General to
+other proof assistants if you know a little bit of Emacs Lisp. Please
+feel free to download Proof General to customize it for another system,
+and tell us how you get on.
@menu
* Introduction::
@@ -602,9 +602,14 @@ Suppose your new assistant is
called myassistant.
@itemize @minus
-@item Make a directory myassistant to put the specific customization and associated files in,
- called myassistant
-@item Edit proof-site.el to add a new case to the 'proof-assistant' variable.
+@item Make a directory myassistant to put the specific customization and associated files in, called myassistant
+@item Add a file myassistant.el to the new directory, and a customization group:
+(defcustom myassistant-settings nil
+ "Customization of MyAssistant specifics for Proof General."
+ :group 'proof-general)
+@item Define the derived modes for the new assistant:
+
+@item Edit proof-site.el to add a new case to the 'proof-general-supported-assistants' variable
@end itemize
@node Literature, , Adding New Proof Assistant, Internals