(Info-isearch-search): Always return point.

This commit is contained in:
Johan Bockgård 2008-03-25 14:48:24 +00:00
parent a8c241185d
commit 46b6b76f13
2 changed files with 6 additions and 2 deletions

View file

@ -1,3 +1,7 @@
2008-03-25 Johan Bockg$(Q)[(Brd <bojohan@gnu.org>
* info.el (Info-isearch-search): Always return point.
2008-03-23 Andreas Schwab <schwab@suse.de>
* menu-bar.el (menu-bar-showhide-fringe-ind-menu) [mixed]: Fix

View file

@ -1829,8 +1829,8 @@ If DIRECTION is `backward', search in the reverse direction."
(unless isearch-forward 'backward))
(Info-search (if isearch-regexp string (regexp-quote string))
bound noerror count
(unless isearch-forward 'backward))
(point)))
(unless isearch-forward 'backward)))
(point))
(let ((isearch-search-fun-function nil))
(isearch-search-fun))))