From 46b6b76f13b6818332072a03aa542fa69f1e8519 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Johan=20Bockg=C3=A5rd?= Date: Tue, 25 Mar 2008 14:48:24 +0000 Subject: [PATCH] (Info-isearch-search): Always return point. --- lisp/ChangeLog | 4 ++++ lisp/info.el | 4 ++-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 2d420370d14..493c8a4216c 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,7 @@ +2008-03-25 Johan Bockg$(Q)[(Brd + + * info.el (Info-isearch-search): Always return point. + 2008-03-23 Andreas Schwab * menu-bar.el (menu-bar-showhide-fringe-ind-menu) [mixed]: Fix diff --git a/lisp/info.el b/lisp/info.el index 66ca4b61000..56b7e3e7fd0 100644 --- a/lisp/info.el +++ b/lisp/info.el @@ -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)))) -- 2.11.4.GIT