aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJohan Bockgård2008-03-25 14:41:44 +0000
committerJohan Bockgård2008-03-25 14:41:44 +0000
commit98db7a382a424fb0644ab96baf7982f1ef8342bf (patch)
treea2f88d77d262502deac9d6eec3292ae9feb7b0ae
parent97bef88eb52fb1ff9ddd581eb0ec596c69c2d837 (diff)
downloademacs-98db7a382a424fb0644ab96baf7982f1ef8342bf.tar.gz
emacs-98db7a382a424fb0644ab96baf7982f1ef8342bf.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 25e5e7fba04..49747f9bfb9 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-25 Stefan Monnier <monnier@iro.umontreal.ca> 52008-03-25 Stefan Monnier <monnier@iro.umontreal.ca>
2 6
3 * diff-mode.el (diff-remembered-defdir): New var. 7 * diff-mode.el (diff-remembered-defdir): New var.
diff --git a/lisp/info.el b/lisp/info.el
index 5a0c4ce6611..f291bad2a95 100644
--- a/lisp/info.el
+++ b/lisp/info.el
@@ -1834,8 +1834,8 @@ If DIRECTION is `backward', search in the reverse direction."
1834 (unless isearch-forward 'backward)) 1834 (unless isearch-forward 'backward))
1835 (Info-search (if isearch-regexp string (regexp-quote string)) 1835 (Info-search (if isearch-regexp string (regexp-quote string))
1836 bound noerror count 1836 bound noerror count
1837 (unless isearch-forward 'backward)) 1837 (unless isearch-forward 'backward)))
1838 (point))) 1838 (point))
1839 (let ((isearch-search-fun-function nil)) 1839 (let ((isearch-search-fun-function nil))
1840 (isearch-search-fun)))) 1840 (isearch-search-fun))))
1841 1841