comparison lisp/mail/rmail.el @ 24292:1e4850ff49cb

(rmail-search): Track match with a marker, not an integer.
author Richard M. Stallman <rms@gnu.org>
date Wed, 10 Feb 1999 03:50:50 +0000
parents 998fefa595a7
children c1bb999de64e
comparison
equal deleted inserted replaced
24291:7185ff41e811 24292:1e4850ff49cb
2425 (if reversep 2425 (if reversep
2426 (progn 2426 (progn
2427 (goto-char (rmail-msgend msg)) 2427 (goto-char (rmail-msgend msg))
2428 (re-search-backward 2428 (re-search-backward
2429 regexp (rmail-msgbeg msg) t))) 2429 regexp (rmail-msgbeg msg) t)))
2430 (setq win (point)) 2430 (setq win (point-marker))
2431 (rmail-show-message msg) 2431 (rmail-show-message msg)
2432 (message "%sRmail search for %s...done" 2432 (message "%sRmail search for %s...done"
2433 (if reversep "Reverse " "") 2433 (if reversep "Reverse " "")
2434 regexp) 2434 regexp)
2435 (goto-char win)) 2435 (goto-char win))