diff options
| author | David Aspinall | 2010-08-24 13:02:12 +0000 |
|---|---|---|
| committer | David Aspinall | 2010-08-24 13:02:12 +0000 |
| commit | 6ba98422a95a799778378ecf7e34febc6577fa3b (patch) | |
| tree | 2a287b720320ac8faf26dbf81073e5d4ea62e27e /coq | |
| parent | 88bef988d16cc4da0033ba2c0e4c9a6573c671dd (diff) | |
proof-script-command-end-regexp: allow any non-letter after a period
to terminate a command, fixing #296 (and hopefully not messing up
other cases).
Diffstat (limited to 'coq')
| -rw-r--r-- | coq/coq.el | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -650,7 +650,7 @@ This is specific to `coq-mode'." (set (make-local-variable 'indent-tabs-mode) nil) (setq proof-terminal-char ?\.) (setq proof-script-command-end-regexp - "\\(?:[^.]\\|\\(?:\\.\\.\\)\\)\\.\\(\\s-\\|\\'\\)") + "\\(?:[^.]\\|\\(?:\\.\\.\\)\\)\\.\\(\\s-\\|[^[:alpha:]]\\)") (setq proof-script-comment-start "(*") (setq proof-script-comment-end "*)") (setq proof-unnamed-theorem-name "Unnamed_thm") ; Coq's default name |
