aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Aspinall2004-04-15 16:13:16 +0000
committerDavid Aspinall2004-04-15 16:13:16 +0000
commitf423f145c4f1a35192914ad65f030d215dd5d136 (patch)
treefc14090a665c760d0120e8c26c8eea9c4a6208b2
parent353217b0ec53f768db348a75b0faedc162bebcda (diff)
Add proof-script-syntax-table-entries, proof-shell-syntax-table-entries.
-rw-r--r--generic/proof-config.el26
1 files changed, 26 insertions, 0 deletions
diff --git a/generic/proof-config.el b/generic/proof-config.el
index 5639e278..dde147d0 100644
--- a/generic/proof-config.el
+++ b/generic/proof-config.el
@@ -1437,6 +1437,20 @@ See also proof-{shell,resp,goals}-font-lock-keywords."
:type 'sexp
:group 'proof-script)
+(defcustom proof-script-syntax-table-entries nil
+ "List of syntax table entries for proof script mode.
+A flat list of the form
+
+ (CHAR SYNCODE CHAR SYNCODE ...)
+
+See doc of `modify-syntax-entry' for details of characters
+and syntax codes.
+
+At present this is used only by the `proof-easy-config' macro."
+ :type 'sexp
+ :group 'proof-script)
+
+
;;
;; Proof script context menu customization
@@ -2254,6 +2268,18 @@ See also proof-{script,resp,goals}-font-lock-keywords."
:type 'sexp
:group 'proof-shell)
+(defcustom proof-shell-syntax-table-entries nil
+ "List of syntax table entries for proof script mode.
+A flat list of the form
+
+ (CHAR SYNCODE CHAR SYNCODE ...)
+
+See doc of `modify-syntax-entry' for details of characters
+and syntax codes.
+
+At present this is used only by the `proof-easy-config' macro."
+ :type 'sexp
+ :group 'proof-shell)
;;