diff options
| author | Richard M. Stallman <rms@gnu.org> | 1996-12-27 00:44:57 +0000 |
|---|---|---|
| committer | Richard M. Stallman <rms@gnu.org> | 1996-12-27 00:44:57 +0000 |
| commit | 141aa68cfc8ba93e3ea6237ec8d86834069ae66e (patch) | |
| tree | 255223c69d05c50c6ccf606f558058d844dd2b32 | |
| parent | 94d63a2336fb64e7b8006167b162a491874c035d (diff) | |
| download | emacs-141aa68cfc8ba93e3ea6237ec8d86834069ae66e.tar.gz | |
(perform-replace): Request integers from match-data,
instead of asking for markers and converting them.
| -rw-r--r-- | lisp/replace.el | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/lisp/replace.el b/lisp/replace.el index 205c8508090..ed02e051506 100644 --- a/lisp/replace.el +++ b/lisp/replace.el @@ -686,12 +686,7 @@ which will run faster and probably do exactly what you want." ;; since lots of markers slow down editing. (setq stack (cons (cons (point) - (or replaced - (mapcar (lambda (elt) - (and elt - (prog1 (marker-position elt) - (set-marker elt nil)))) - (match-data)))) + (or replaced (match-data t))) stack)))) (setq lastrepl (point))) (replace-dehighlight)) |
