# HG changeset patch # User Colin Walters # Date 1022445771 0 # Node ID 45014630aeb27370b4396772feead25baad5ba01 # Parent bc8cc9c5d979f9581063b531f91a3a303c572f4f (perform-replace): Document return value. Use `pop'. diff -r bc8cc9c5d979 -r 45014630aeb2 lisp/replace.el --- a/lisp/replace.el Sun May 26 20:42:31 2002 +0000 +++ b/lisp/replace.el Sun May 26 20:42:51 2002 +0000 @@ -967,7 +967,10 @@ which will run faster and probably do exactly what you want. Please see the documentation of `replace-match' to find out how to simulate -`case-replace'." +`case-replace'. + +This function returns nil if and only if there were no matches to +make, or the user didn't cancel the call." (or map (setq map query-replace-map)) (and query-flag minibuffer-auto-raise (raise-frame (window-frame (minibuffer-window)))) @@ -1123,12 +1126,11 @@ (setq done t)) ((eq def 'backup) (if stack - (let ((elt (car stack))) + (let ((elt (pop stack))) (goto-char (car elt)) (setq replaced (eq t (cdr elt))) (or replaced - (set-match-data (cdr elt))) - (setq stack (cdr stack))) + (set-match-data (cdr elt)))) (message "No previous match") (ding 'no-terminate) (sit-for 1)))