diff options
| author | David Aspinall | 2002-08-28 14:34:32 +0000 |
|---|---|---|
| committer | David Aspinall | 2002-08-28 14:34:32 +0000 |
| commit | b1b239a703855b3a603f48683413d0e709483ddd (patch) | |
| tree | 064b87cec642bdd5b91280e1fcf7a18bc719ae79 | |
| parent | f614ba8b24487903a879cbecaa02be62ea7cec84 (diff) | |
Fix bug in pg-remove-specials breaking x-sym display in Isabelle
| -rw-r--r-- | generic/proof-utils.el | 2 |
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)))) |
