diff options
| author | Makarius Wenzel | 1999-05-27 19:18:36 +0000 |
|---|---|---|
| committer | Makarius Wenzel | 1999-05-27 19:18:36 +0000 |
| commit | e3ce30cd8eef2462babb9b641b9310b86af2e5c3 (patch) | |
| tree | 22b7eb2d3559f286db4ced1c087bd73e61bf8883 | |
| parent | b0fc13cbe1c2181084bdbba94ada080088f0a66a (diff) | |
added proof-string-start-regexp, proof-string-end-regexp;
| -rw-r--r-- | generic/proof-config.el | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/generic/proof-config.el b/generic/proof-config.el index bf898fc4..b98c531c 100644 --- a/generic/proof-config.el +++ b/generic/proof-config.el @@ -475,6 +475,18 @@ The script buffer's comment-end is set to this string plus a space." :type 'string :group 'proof-script) +(defcustom proof-string-start-regexp "\"" + "Regexp which matches the start of a quoted string in the proof +assistant command language." + :type 'string + :group 'proof-script) + +(defcustom proof-string-end-regexp "\"" + "Regexp which matches the end of a quoted string in the proof +assistant command language." + :type 'string + :group 'proof-script) + (defcustom proof-case-fold-search nil "Value for case-fold-search when recognizing portions of proof scripts. The default value is 'nil'. If your prover has a case *insensitive* |
