aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
authorJohan Bockgård <[email protected]>2008-03-25 14:41:44 +0000
committerJohan Bockgård <[email protected]>2008-03-25 14:41:44 +0000
commit98db7a382a424fb0644ab96baf7982f1ef8342bf (patch)
treea2f88d77d262502deac9d6eec3292ae9feb7b0ae /lisp
parent97bef88eb52fb1ff9ddd581eb0ec596c69c2d837 (diff)
(Info-isearch-search): Always return point.
Diffstat (limited to 'lisp')
-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 25e5e7fba0..49747f9bfb 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,7 @@
+2008-03-25 Johan Bockg$(Q)[(Brd <[email protected]>
+
+ * info.el (Info-isearch-search): Always return point.
+
2008-03-25 Stefan Monnier <[email protected]>
* diff-mode.el (diff-remembered-defdir): New var.
diff --git a/lisp/info.el b/lisp/info.el
index 5a0c4ce661..f291bad2a9 100644
--- a/lisp/info.el
+++ b/lisp/info.el
@@ -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))))