aboutsummaryrefslogtreecommitdiff
path: root/generic
diff options
context:
space:
mode:
Diffstat (limited to 'generic')
-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)
;;