diff options
| author | Thomas Kleymann | 1997-10-17 14:38:33 +0000 |
|---|---|---|
| committer | Thomas Kleymann | 1997-10-17 14:38:33 +0000 |
| commit | fd4b0f8bdbb42fe6ca061bf94ee2a1e0a428d379 (patch) | |
| tree | 764526ff2629426a4887f4b499cfc675a3dc52e5 | |
| parent | 4ee609ae6104d9e353707206b704b45e25ad035e (diff) | |
fixed a bug in proof-process-active-terminator. Notice that it still
doesn't work when you are inside a comment and press the
proof-terminal-char
| -rw-r--r-- | proof.el | 10 |
1 files changed, 8 insertions, 2 deletions
@@ -19,6 +19,11 @@ ;; report ;; $Log$ +;; Revision 1.15 1997/10/17 14:38:33 tms +;; fixed a bug in proof-process-active-terminator. Notice that it still +;; doesn't work when you are inside a comment and press the +;; proof-terminal-char +;; ;; Revision 1.14 1997/10/16 14:12:04 djs ;; Figured out display tables. ;; @@ -1141,9 +1146,10 @@ current command." (if (looking-at "\\s-\\|\\'\\|\\w") (if (not (re-search-backward "\\S-" (proof-end-of-locked) t)) (error "Nothing to do!"))) - (if (not (= (char-after (point)) proof-terminal-char) - (progn (forward-char) (insert proof-terminal-string) (setq ins t)))) + (if (not (= (char-after (point)) proof-terminal-char)) + (progn (forward-char) (insert proof-terminal-string) (setq ins t))) (proof-assert-until-point + ;; BEWARE: doesn't work when inside a comment! (function () (if ins (backward-delete-char 1)) (goto-char mrk) (insert proof-terminal-string))))) |
