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

This commit is contained in:
Johan Bockgård 2008-03-25 14:41:44 +00:00
parent 97bef88eb5
commit 98db7a382a
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-25 Stefan Monnier <monnier@iro.umontreal.ca>
* diff-mode.el (diff-remembered-defdir): New var.

View file

@ -1834,8 +1834,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))))