aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Aspinall2000-05-25 20:26:25 +0000
committerDavid Aspinall2000-05-25 20:26:25 +0000
commit27f0340ed5999e8b899f827358c4fdbb08f9dd2e (patch)
tree129e1d9bc14e4f36ff2d8c9dcd77885bca3b1948
parentaded7a4f7db3494817a96b1ea763bec5a997b2b3 (diff)
Made x-symbol-enable be individual option.
-rw-r--r--generic/proof-config.el17
1 files changed, 16 insertions, 1 deletions
diff --git a/generic/proof-config.el b/generic/proof-config.el
index 302852dc..506eb1a4 100644
--- a/generic/proof-config.el
+++ b/generic/proof-config.el
@@ -122,7 +122,7 @@ NB: the toolbar is only available with XEmacs."
:set 'proof-set-value
:group 'proof-user-options)
-(defcustom proof-x-symbol-enable nil
+(proof-defasscustom x-symbol-enable nil
"*Whether to use x-symbol in Proof General buffers.
If you activate this variable, whether or not you get x-symbol support
depends on whether your proof assistant supports it and whether
@@ -2012,6 +2012,21 @@ of `easy-menu-define' for more details."
:type 'sexp
:group 'prover-config)
+(proof-defasscustom completion-table nil
+ "List of identifiers to use for completion for this proof assistant.
+Completion is activated with \\[complete].
+
+If this table is empty or needs adjusting, please make changes using
+`customize-variable' and send suggestions to proofgen@@dcs.ed.ac.uk."
+ :type '(list string)
+ :group 'prover-config)
+
+(proof-defasscustom tags-program nil
+ "Program to run to generate TAGS table for proof assistant."
+ :type 'file
+ :group 'prover-config)
+
+