diff options
| -rw-r--r-- | doc/ProofGeneral.texi | 6 | ||||
| -rw-r--r-- | generic/proof-config.el | 7 |
2 files changed, 13 insertions, 0 deletions
diff --git a/doc/ProofGeneral.texi b/doc/ProofGeneral.texi index 4071275f..dc8a54ac 100644 --- a/doc/ProofGeneral.texi +++ b/doc/ProofGeneral.texi @@ -2274,6 +2274,12 @@ The script buffer's @code{comment-start} is set to this string plus a space. String which ends a comment in the proof assistant command language.@* The script buffer's @code{comment-end} is set to this string plus a space. @end defvar +@c TEXI DOCSTRING MAGIC: proof-case-fold-search +@defvar proof-case-fold-search +Value for @code{case-fold-search} when recognizing portions of proof scripts.@* +If your prover has a case-insensitive syntax, this should be set +to @code{'t'}. +@end defvar @c TEXI DOCSTRING MAGIC: proof-save-command-regexp @defvar proof-save-command-regexp Matches a save command diff --git a/generic/proof-config.el b/generic/proof-config.el index 56f59809..59a85d34 100644 --- a/generic/proof-config.el +++ b/generic/proof-config.el @@ -446,6 +446,13 @@ The script buffer's comment-end is set to this string plus a space." :type 'string :group 'proof-script) +(defcustom proof-case-fold-search nil + "Value for case-fold-search when recognizing portions of proof scripts. +If your prover has a case-insensitive syntax, this should be set +to 't'." + :type 'boolean + :group 'proof-script) + (defcustom proof-save-command-regexp nil "Matches a save command" :type 'regexp |
