diff options
| author | Pierre Courtieu | 2006-09-29 12:57:56 +0000 |
|---|---|---|
| committer | Pierre Courtieu | 2006-09-29 12:57:56 +0000 |
| commit | 967d89fb4807e6a24599e5cae2c2827209fde7b6 (patch) | |
| tree | ebb56bf6fe6d4c0e46e3d4e0d3866a431221bdd2 | |
| parent | 20a015dc14428774fc0feb4edbeb640e17cb6b00 (diff) | |
fixed a bug with wakeup char for coq.
| -rw-r--r-- | coq/coq.el | 7 |
1 files changed, 3 insertions, 4 deletions
@@ -81,7 +81,7 @@ To disable coqc being called (and use only make), set this to nil." (defvar coq-shell-prompt-pattern (concat "^\n?" proof-id " < \\(?:[0-9]+ |\\(?:" proof-id "|?\\)*| " - "[0-9]+ < \\)?") + "[0-9]+ < \\)?\\(?:\x6\\|\371\\)") "*The prompt pattern for the inferior shell running coq.") ;; FIXME da: this was disabled (set to nil) -- why? @@ -931,9 +931,8 @@ This is specific to `coq-mode'." proof-shell-eager-annotation-start "\376\\|\\[Reinterning" proof-shell-eager-annotation-start-length 12 proof-shell-eager-annotation-end "\377\\|done\\]" ; done - proof-shell-annotated-prompt-regexp - (concat proof-shell-prompt-pattern - (char-to-string proof-shell-wakeup-char)) ; done + proof-shell-annotated-prompt-regexp proof-shell-prompt-pattern +; (concat proof-shell-prompt-pattern (char-to-string proof-shell-wakeup-char)) ; done proof-shell-result-start "\372 Pbp result \373" proof-shell-result-end "\372 End Pbp result \373" proof-shell-start-goals-regexp "[0-9]+ subgoals?" |
