diff options
| author | Pierre Courtieu | 2020-05-04 14:40:59 +0200 |
|---|---|---|
| committer | Pierre Courtieu | 2020-05-04 14:40:59 +0200 |
| commit | 23db83dc4141d89530f6381ba49f56399682d4e0 (patch) | |
| tree | df0525f36f3a03863ea688c88bbfcd04c20030a8 /coq | |
| parent | 84b81a84db632a97cc978494f2a5609525034223 (diff) | |
Fixing #485, bug on proof without "Proof".
Due to a re-search that should fail silently.
Diffstat (limited to 'coq')
| -rw-r--r-- | coq/coq.el | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -2661,7 +2661,7 @@ built from the list of strings in SUGGESTED." (with-current-buffer proof-script-buffer (save-excursion (goto-char (span-start span)) - (let* ((endpos (re-search-forward coq-proof-using-regexp))) + (let* ((endpos (re-search-forward coq-proof-using-regexp (span-end span) t))) (when endpos (let* ((suggested (span-property span 'dependencies)) (proof-pos (match-beginning 0)) |
