aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Aspinall2002-08-28 14:34:32 +0000
committerDavid Aspinall2002-08-28 14:34:32 +0000
commitb1b239a703855b3a603f48683413d0e709483ddd (patch)
tree064b87cec642bdd5b91280e1fcf7a18bc719ae79
parentf614ba8b24487903a879cbecaa02be62ea7cec84 (diff)
Fix bug in pg-remove-specials breaking x-sym display in Isabelle
-rw-r--r--generic/proof-utils.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/generic/proof-utils.el b/generic/proof-utils.el
index e28241de..8e49e46c 100644
--- a/generic/proof-utils.el
+++ b/generic/proof-utils.el
@@ -435,7 +435,7 @@ Default to whole buffer. Leave point at END."
(narrow-to-region start end))
(goto-char (or start (point-min)))
(proof-replace-regexp pg-special-char-regexp "")
- (point-max)))
+ (goto-char (point-max))))