1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2025-01-30 19:53:09 +00:00

(occur): Stop at end of buffer.

This commit is contained in:
Stefan Monnier 2001-02-13 20:08:37 +00:00
parent 402dbbd1ec
commit dd4e0e557d
2 changed files with 7 additions and 3 deletions

View File

@ -1,3 +1,7 @@
2001-02-13 Stefan Monnier <monnier@cs.yale.edu>
* replace.el (occur): Stop at end of buffer.
2001-02-13 Eli Zaretskii <eliz@is.elta.co.il>
* international/mule-cmds.el (set-input-method): Another doc fix.
@ -1943,7 +1947,7 @@
2000-12-11 Carsten Dominik <dominik@strw.leidenuniv.nl>
* progmodes/idlwave.el: Updated to IDLWAVE version 4.7. Too many
changes to list them here.
changes to list them here.
* progmodes/idlw-shell.el: Updated to IDLWAVE version 4.7. Too
many changes to list them here.
@ -1986,7 +1990,7 @@
2000-12-10 Carsten Dominik <dominik@strw.leidenuniv.nl>
* textmodes/reftex.el (reftex-scanning-info-available-p): New
function
function
(reftex-TeX-master-file): Check for `tex-main-file' early enough.
* textmodes/reftex-global.el (reftex-create-tags-file): Fixed bug

View File

@ -623,7 +623,7 @@ the matching is case-sensitive."
(goto-char (point-max)))
(save-excursion
;; Find next match, but give up if prev match was at end of buffer.
(while (and (not (= prevpos (point-max)))
(while (and (not (eobp))
(re-search-forward regexp nil t))
(goto-char (match-beginning 0))
(beginning-of-line)