summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohan Bockgård <bojohan@gnu.org>2008-03-25 14:48:24 +0000
committerJohan Bockgård <bojohan@gnu.org>2008-03-25 14:48:24 +0000
commit46b6b76f13b6818332072a03aa542fa69f1e8519 (patch)
tree28717dc85abd5534fbe16c504dd0141378025a4a
parenta8c241185d775806b6552fe53c746b0b2570af78 (diff)
downloademacs-46b6b76f13b6818332072a03aa542fa69f1e8519.tar.gz
(Info-isearch-search): Always return point.
-rw-r--r--lisp/ChangeLog4
-rw-r--r--lisp/info.el4
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 <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
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))))