aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJohan Bockgård2008-03-25 14:48:24 +0000
committerJohan Bockgård2008-03-25 14:48:24 +0000
commit46b6b76f13b6818332072a03aa542fa69f1e8519 (patch)
tree28717dc85abd5534fbe16c504dd0141378025a4a
parenta8c241185d775806b6552fe53c746b0b2570af78 (diff)
downloademacs-46b6b76f13b6818332072a03aa542fa69f1e8519.tar.gz
emacs-46b6b76f13b6818332072a03aa542fa69f1e8519.zip
(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 @@
12008-03-25 Johan Bockg$(Q)[(Brd <bojohan@gnu.org>
2
3 * info.el (Info-isearch-search): Always return point.
4
12008-03-23 Andreas Schwab <schwab@suse.de> 52008-03-23 Andreas Schwab <schwab@suse.de>
2 6
3 * menu-bar.el (menu-bar-showhide-fringe-ind-menu) [mixed]: Fix 7 * 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."
1829 (unless isearch-forward 'backward)) 1829 (unless isearch-forward 'backward))
1830 (Info-search (if isearch-regexp string (regexp-quote string)) 1830 (Info-search (if isearch-regexp string (regexp-quote string))
1831 bound noerror count 1831 bound noerror count
1832 (unless isearch-forward 'backward)) 1832 (unless isearch-forward 'backward)))
1833 (point))) 1833 (point))
1834 (let ((isearch-search-fun-function nil)) 1834 (let ((isearch-search-fun-function nil))
1835 (isearch-search-fun)))) 1835 (isearch-search-fun))))
1836 1836